Beispiel #1
0
 public static NTSG STTranslate(this NTSG geometry, double deltaX, double deltaY, double deltaZ)
 {
     throw new InvalidOperationException();
 }
Beispiel #2
0
 public static string STGeoHash(this NTSG geometry, int maxchars)
 {
     throw new InvalidOperationException();
 }
Beispiel #3
0
 public static byte[] STAsBinary(this NTSG geometry, string encoding) // TODO: geography
 {
     throw new InvalidOperationException();
 }
Beispiel #4
0
 public static string STAsText(this NTSG geometry) // TODO: geography
 {
     throw new InvalidOperationException();
 }
Beispiel #5
0
 public static string STAsX3D(this NTSG geometry, int maxDecimalDigits)
 {
     throw new InvalidOperationException();
 }
Beispiel #6
0
 public static string STAsKML(this NTSG geometry, int maxDecimalDigits, string nprefix)
 {
     throw new InvalidOperationException();
 }
Beispiel #7
0
 public static string STAsSVG(this NTSG geometry, int rel)
 {
     throw new InvalidOperationException();
 }
Beispiel #8
0
 public static int?STNumPoints(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #9
0
 public static NTSG STPointN(this NTSG geometry, int n)
 {
     throw new InvalidOperationException();
 }
Beispiel #10
0
 public static string GeometryType(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #11
0
 public static int?STNumInteriorRings(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #12
0
 public static NTSG STExteriorRing(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #13
0
 public static NTSG STAffine(this NTSG geometry, double a, double b, double d, double e, double xoff, double yoff)
 {
     throw new InvalidOperationException();
 }
Beispiel #14
0
 public static NTSG STTransScale(this NTSG geometry, double deltaX, double deltaY, double xFactor, double yFactor)
 {
     throw new InvalidOperationException();
 }
Beispiel #15
0
 public static string STAsHEXEWKB(this NTSG geometry, string encoding)
 {
     throw new InvalidOperationException();
 }
Beispiel #16
0
 public static NTSG STStartPoint(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #17
0
 public static string STAsEncodedPolyline(this NTSG geometry, int precision)
 {
     throw new InvalidOperationException();
 }
Beispiel #18
0
 public static double?STZ(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #19
0
 public static string STAsLatLonText(this NTSG geometry, string format)
 {
     throw new InvalidOperationException();
 }
Beispiel #20
0
 public static NTSG STBoundary(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #21
0
 public static byte[] STAsTWKB(this NTSG geometry) // TODO: overloads
 {
     throw new InvalidOperationException();
 }
Beispiel #22
0
 public static int?STDimension(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #23
0
 public static string STAsX3D(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #24
0
 public static NTSG STEnvelope(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #25
0
 public static string STAsX3D(this NTSG geometry, int maxDecimalDigits, int options) // TODO: options enum (bitfield)
 {
     throw new InvalidOperationException();
 }
        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);
        }
Beispiel #27
0
 public static string STAsText(this NTSG geometry, int maxDecimalDigits) // TODO: geography
 {
     throw new InvalidOperationException();
 }
Beispiel #28
0
 public static byte[] STAsEWKB(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
 public static bool?STIsValid(this NTSG geometry)
 {
     throw new InvalidOperationException();
 }
Beispiel #30
0
 public static NTSG STScale(string geometry, NTSG factor, NTSG origin)
 {
     throw new InvalidOperationException();
 }