Skip to content

Commit

Permalink
Change "Simple RGB" to "True Colour"
Browse files Browse the repository at this point in the history
Change "Simple RGB" to "True Colour as per advice in #681
  • Loading branch information
GypsyBojangles authored Mar 2, 2021
1 parent 54c11ff commit f25bc17
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dev/services/wms/ows_refactored/c3/ows_c3_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
"scale_range": [0.0, 3000.0],
}

style_c3_simple_rgb = {
"name": "simple_rgb",
"title": "Simple RGB",
"abstract": "Simple true-colour image, using the red, green and blue bands",
style_c3_true_colour = {
"name": "true_colour",
"title": "True Colour",
"abstract": "True-colour image, using the red, green and blue bands",
"components": {
"red": {"nbart_red": 1.0},
"green": {"nbart_green": 1.0},
Expand Down Expand Up @@ -259,7 +259,7 @@

# Styles grouping
styles_c3_ls_common = [
style_c3_simple_rgb,
style_c3_true_colour,
style_c3_false_colour,
style_c3_ndvi,
style_c3_ndwi,
Expand Down Expand Up @@ -312,7 +312,7 @@
"native_resolution": [25, -25],
"default_bands": ["nbart_red", "nbart_green", "nbart_blue"],
},
"styling": {"default_style": "simple_rgb", "styles": styles_c3_ls_8},
"styling": {"default_style": "true_colour", "styles": styles_c3_ls_8},
}

dea_c3_ls7_ard = {
Expand Down Expand Up @@ -340,7 +340,7 @@
"native_resolution": [25, -25],
"default_bands": ["nbart_red", "nbart_green", "nbart_blue"],
},
"styling": {"default_style": "simple_rgb", "styles": styles_c3_ls_7},
"styling": {"default_style": "true_colour", "styles": styles_c3_ls_7},
}
dea_c3_ls5_ard = {
"title": "DEA C3 Landsat 5 ARD",
Expand Down Expand Up @@ -369,5 +369,5 @@
"native_resolution": [25, -25],
"default_bands": ["nbart_red", "nbart_green", "nbart_blue"],
},
"styling": {"default_style": "simple_rgb", "styles": styles_c3_ls_common},
"styling": {"default_style": "true_colour", "styles": styles_c3_ls_common},
}

0 comments on commit f25bc17

Please sign in to comment.