예제 #1
0
 public RasterCoordinate(long rasterCode)
 {
     this.Quadrand = Quadrand.BottomLeft;
     this.X = 0;
     this.Y = 0;
     this.RasterCode = rasterCode;
 }
예제 #2
0
 public RasterCoordinate(Quadrand quadrand, long x, long y)
 {
     this.Quadrand = quadrand;
     this.X = x;
     this.Y = y;
 }