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