Exemple #1
0
 public void InitializeCoord(string x_ll_val, string y_ll_val, string x_ru_val, string y_ru_val)
 {
     this = new RectArea(x_ll_val, y_ll_val, x_ru_val, y_ru_val);
 }
 public WorldviewQueryMaker(string[] Lyr_list, DateTime Tm, RectArea Coord, projection_type Prj_tp)
 {
     layers_list = Lyr_list; time = Tm; coordinates = Coord; projection = Prj_tp;
 }
Exemple #3
0
 public void InitializeCoord(double x_ll_val, double y_ll_val, double x_ru_val, double y_ru_val)
 {
     this = new RectArea(x_ll_val, y_ll_val, x_ru_val, y_ru_val);
 }