예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FloodBoundary" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Geometry">Geometry.</param>
 public FloodBoundary(string Id = null, GeoRiskGeometry Geometry = null)
 {
     this.Id       = Id;
     this.Geometry = Geometry;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CrimeBoundary" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="Type">Type.</param>
 /// <param name="_Ref">_Ref.</param>
 /// <param name="Geometry">Geometry.</param>
 public CrimeBoundary(string Id = null, string Type = null, string _Ref = null, GeoRiskGeometry Geometry = null)
 {
     this.Id       = Id;
     this.Type     = Type;
     this._Ref     = _Ref;
     this.Geometry = Geometry;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Grid" /> class.
 /// </summary>
 /// <param name="Code">Code.</param>
 /// <param name="Geometry">Geometry.</param>
 public Grid(string Code = null, GeoRiskGeometry Geometry = null)
 {
     this.Code     = Code;
     this.Geometry = Geometry;
 }