Skip to content

Commit

Permalink
Merge pull request #514 from GeoscienceAustralia/odc_query
Browse files Browse the repository at this point in the history
Fix cambodia error
  • Loading branch information
pindge authored Mar 30, 2020
2 parents d957cd9 + ae3d0e4 commit 54020cd
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions dev/services/wms/cc-geomedian/ows_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@
"geographic": True,
"vertical_coord_first": True
},
"EPSG:3577": { # GDA-94, internal representation
"EPSG:32648": { # WGS 84 / UTM zone 48N
"geographic": False,
"horizontal_coord": "easting",
"vertical_coord": "northing",
"horizontal_coord": "x",
"vertical_coord": "y",
},
},
"allowed_urls": [
Expand Down Expand Up @@ -440,8 +440,9 @@
"manual_merge": True,
},
"wcs": {
"native_crs": "EPSG:32648",
"native_resolution": [25.0, 25.0],
"default_bands": ["red", "green", "blue"]
"default_bands": ["red", "green", "blue"],
},
"styling": {
"default_style": "simple_rgb",
Expand All @@ -462,16 +463,17 @@
WOfS is produced by using a water classifier to classify when water is observed on the ground surface, next the presence of water is divided by the total observations to create a percentage of water presence over all observations.
The WOfS layer was calculated with the datacube-stats.""",
"product_name": "wofs_grids_1987_2017",
"bands": bands_ls,
"bands": bands_wofs,
"resource_limits": reslim_cambodia,
"image_processing": {
"extent_mask_func": "datacube_ows.ogc_utils.mask_by_val",
"always_fetch_bands": [],
"manual_merge": True,
},
"wcs": {
"native_crs": "EPSG:32648",
"native_resolution": [25.0, 25.0],
"default_bands": ["wofs"]
"default_bands": ["wofs"],
},
"styling": {
"default_style": "WOfS_frequency",
Expand Down

0 comments on commit 54020cd

Please sign in to comment.