Skip to content

2023.02.00-RC3-geOrchestra

Pre-release
Pre-release
Compare
Choose a tag to compare
@dsuren1 dsuren1 released this 12 Oct 09:19
· 27 commits to 2023.02.xx since this release
fc017e1

What's Changed

This Release Candidate contains updates developed as part of MOM MS4 - Phase III. The MapStore git sub-module revision has been also updated to point to the latest stable version of MapStore (2023.02.xx) where all the involved updates have been contributed and released as part of v2023.02.00.

Relevant fixes and enhancements

Documentation update

MapStore documentation

MapStore latest documentation to use as a reference:

Involved migration guidelines for this RC:

Docker Image

https://hub.docker.com/r/geosolutionsit/mapstore2-georchestra/tags?page=1&name=2023.02.00-RC3-geOrchestra

Configuration changes

new.json changes

To configure COG layer as background. A configuration similar to one shown below has to be added to new.json

{
...
"layers":{[
...
+ {
+   "type": "cog",
+   "title": "Cloud optimized geotiff",
+   "visibility": false,
+   "sources": [{
+     "url": "https://example.com/coglayer.tif"
+   }],
+   "group": "background"
+ }
...
]}

localConfig.json changes

  • To properly reproject the COG layer, the projectionDefs array must be updated with the projection configuration required for the COG layers
  • Also COG layer can be added as static background service to catalog under initialState.defaultState.catalog.default
{
...
"staticServices": {
  "default_map_backgrounds": {
    ...
    "backgrounds":[{
      ...
+      {
+       "type": "cog",
+       "title": "Cloud optimized geotiff",
+        "visibility": false,
+        "sources": [{
+        "url": "https://example.com/coglayer.tif"
+        }],
+        "group": "background"
+      }
      ...
    }]
  }
}

Full Changelog: 2023.02.00-RC2-geOrchestra...2023.02.00-RC3-geOrchestra