示例#1
0
 public static NTSG STTranslate(this NTSG geometry, double deltaX, double deltaY, double deltaZ)
 {
     throw new InvalidOperationException();
 }
示例#2
0
 public static string STGeoHash(this NTSG geometry, int maxchars)
 {
     throw new InvalidOperationException();
 }
示例#3
0
 public static byte[] STAsBinary(this NTSG geometry, string encoding) // TODO: geography
 {
     throw new InvalidOperationException();
 }
示例#4
0
 public static string STAsText(this NTSG geometry) // TODO: geography
 {
     throw new InvalidOperationException();
 }
示例#5
0
 public static string STAsX3D(this NTSG geometry, int maxDecimalDigits)
 {
     throw new InvalidOperationException();
 }
示例#6
0
 public static string STAsKML(this NTSG geometry, int maxDecimalDigits, string nprefix)
 {
     throw new InvalidOperationException();
 }
示例#7
0
 public static string STAsSVG(this NTSG geometry, int rel)
 {
     throw new InvalidOperationException();
 }
示例#8
0
 public static int?STNumPoints(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#9
0
 public static NTSG STPointN(this NTSG geometry, int n)
 {
     throw new InvalidOperationException();
 }
示例#10
0
 public static string GeometryType(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#11
0
 public static int?STNumInteriorRings(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#12
0
 public static NTSG STExteriorRing(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#13
0
 public static NTSG STAffine(this NTSG geometry, double a, double b, double d, double e, double xoff, double yoff)
 {
     throw new InvalidOperationException();
 }
示例#14
0
 public static NTSG STTransScale(this NTSG geometry, double deltaX, double deltaY, double xFactor, double yFactor)
 {
     throw new InvalidOperationException();
 }
示例#15
0
 public static string STAsHEXEWKB(this NTSG geometry, string encoding)
 {
     throw new InvalidOperationException();
 }
示例#16
0
 public static NTSG STStartPoint(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#17
0
 public static string STAsEncodedPolyline(this NTSG geometry, int precision)
 {
     throw new InvalidOperationException();
 }
示例#18
0
 public static double?STZ(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#19
0
 public static string STAsLatLonText(this NTSG geometry, string format)
 {
     throw new InvalidOperationException();
 }
示例#20
0
 public static NTSG STBoundary(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#21
0
 public static byte[] STAsTWKB(this NTSG geometry) // TODO: overloads
 {
     throw new InvalidOperationException();
 }
示例#22
0
 public static int?STDimension(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#23
0
 public static string STAsX3D(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#24
0
 public static NTSG STEnvelope(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#25
0
 public static string STAsX3D(this NTSG geometry, int maxDecimalDigits, int options) // TODO: options enum (bitfield)
 {
     throw new InvalidOperationException();
 }
示例#26
0
        private string createGeoObject(NetTopologySuite.Features.IAttributesTable atr, NetTopologySuite.Geometries.Geometry geo)
        {
            var jsonObj = new
            {
                gml_id     = atr.GetOptionalValue("gml_id"),
                id_lokalId = atr.GetOptionalValue("id_lokalid"),
                geo        = geo.ToString()
            };
            var jsonDoc = JsonConvert.SerializeObject(jsonObj);

            return(jsonDoc);
        }
示例#27
0
 public static string STAsText(this NTSG geometry, int maxDecimalDigits) // TODO: geography
 {
     throw new InvalidOperationException();
 }
示例#28
0
 public static byte[] STAsEWKB(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
 public static bool?STIsValid(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
示例#30
0
 public static NTSG STScale(string geometry, NTSG factor, NTSG origin)
 {
     throw new InvalidOperationException();
 }