Example #1
0
 /// <summary>
 /// Geometry object constructor. Base object class for a geospatial shape.
 /// </summary>
 protected Geometry()
 {
     Metadata = new ShapeMetadata();
 }
Example #2
0
 /// <summary>
 /// A class used to store a collection of spatial objects.
 /// </summary>
 public SpatialDataSet()
 {
     Geometries = new List <Geometry>();
     Metadata   = new ShapeMetadata();
 }