@geolens/sdk 1.4.9 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6201,6 +6201,12 @@ export type OgcRecordProperties = {
|
|
|
6201
6201
|
* Crs
|
|
6202
6202
|
*/
|
|
6203
6203
|
crs?: string | null;
|
|
6204
|
+
/**
|
|
6205
|
+
* Crs Is Geographic
|
|
6206
|
+
*
|
|
6207
|
+
* True when the raster CRS is geographic (gsd/res are degrees, not meters); None when the CRS class is unknown.
|
|
6208
|
+
*/
|
|
6209
|
+
crs_is_geographic?: boolean | null;
|
|
6204
6210
|
/**
|
|
6205
6211
|
* Dataset Count
|
|
6206
6212
|
*/
|
|
@@ -6806,6 +6812,12 @@ export type RasterMetadata = {
|
|
|
6806
6812
|
*/
|
|
6807
6813
|
compression?: string | null;
|
|
6808
6814
|
connect?: RasterConnect | null;
|
|
6815
|
+
/**
|
|
6816
|
+
* Crs Is Geographic
|
|
6817
|
+
*
|
|
6818
|
+
* True when the raster CRS is geographic (res_x/res_y are degrees, not meters); None when the CRS class is unknown.
|
|
6819
|
+
*/
|
|
6820
|
+
crs_is_geographic?: boolean | null;
|
|
6809
6821
|
/**
|
|
6810
6822
|
* Epsg
|
|
6811
6823
|
*
|