wkt2wkb.cs
来自「支持各种栅格图像和矢量图像读取的库」· CS 代码 · 共 48 行
CS
48 行
using System;using OGR;/** * <p>Title: GDAL C# wkt2wkb example.</p> * <p>Description: A sample app for demonstrating the usage of ExportToWkb.</p> * @author Tamas Szekeres (szekerest@gmail.com) * @version 1.0 *//// <summary>/// A C# based sample for demonstrating the usage of ExportToWkb./// </summary> class WKT2WKB { public static void usage() { Console.WriteLine("usage example: wkt2wkb \"POINT(47.0 19.2)\""); System.Environment.Exit(-1); } public static void Main(string[] args) { if (args.Length != 1) usage(); /* -------------------------------------------------------------------- */ /* Register format(s). */ /* -------------------------------------------------------------------- */ ogr.RegisterAll(); Geometry geom = new Geometry(ogr.wkbUnknown, args[0], 0, null, null); int wkbSize = geom.WkbSize(); if (wkbSize > 0) { byte[] wkb = new byte[wkbSize]; geom.ExportToWkb( wkb ); Console.WriteLine( BitConverter.ToString(wkb) ); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?