-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d710d9
commit 5296cb6
Showing
7 changed files
with
71 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
qgreenland/config/layers/Terrain models/Internet required/arctic_dem.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from qgreenland.config.datasets.arctic_dem import arctic_dem_online_v4_1 as dataset | ||
from qgreenland.models.config.layer import Layer, LayerInput | ||
|
||
arctic_dem_online = Layer( | ||
id="arctic_dem", | ||
title="Arctic DEM", | ||
description="Surface elevation in meters.", | ||
in_package=True, | ||
tags=[], | ||
input=LayerInput( | ||
dataset=dataset, | ||
asset=dataset.assets["only"], | ||
), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
from qgreenland.models.config.layer_group import ( | ||
LayerGroupIdentifier, | ||
LayerGroupSettings, | ||
LayerIdentifier, | ||
) | ||
|
||
settings = LayerGroupSettings( | ||
order=[ | ||
LayerGroupIdentifier("BedMachine v5"), | ||
LayerIdentifier("arctic_dem"), | ||
LayerGroupIdentifier("Internet required"), | ||
], | ||
) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
"gdal": "Raster", | ||
"wms": "Raster", | ||
"wfs": "Vector", | ||
"arcgismapserver": "Raster", | ||
} |