maps4fs 1.8.191__py3-none-any.whl → 1.8.193__py3-none-any.whl

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.
maps4fs/generator/dem.py CHANGED
@@ -123,8 +123,7 @@ class DEM(Component):
123
123
  data = self.dtm_provider.get_numpy()
124
124
  except Exception as e: # pylint: disable=W0718
125
125
  self.logger.error("Failed to get DEM data from DTM provider: %s.", e)
126
- self._save_empty_dem(dem_output_resolution)
127
- return
126
+ raise e
128
127
 
129
128
  if len(data.shape) != 2:
130
129
  self.logger.error("DTM provider returned incorrect data: more than 1 channel.")
@@ -18,7 +18,7 @@ class ArcticProvider(DTMProvider):
18
18
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
19
19
  _is_community = True
20
20
 
21
- _extents = (83.98823036056658, 50.7492704708152, 179.99698443265999, -180)
21
+ _extents = [(83.98823036056658, 50.7492704708152, 179.99698443265999, -180)]
22
22
 
23
23
  _instructions = (
24
24
  "This provider source includes 2 meter DEM data for the entire Arctic region above 50 "
@@ -16,7 +16,7 @@ class BadenWurttembergProvider(WCSProvider, DTMProvider):
16
16
  _is_community = True
17
17
  _instructions = None
18
18
  _is_base = False
19
- _extents = (49.79645444804715, 47.52877040346605, 10.54203149250156, 7.444081717803481)
19
+ _extents = [(49.79645444804715, 47.52877040346605, 10.54203149250156, 7.444081717803481)]
20
20
 
21
21
  _url = "https://owsproxy.lgl-bw.de/owsproxy/wcs/WCS_INSP_BW_Hoehe_Coverage_DGM1"
22
22
  _wcs_version = "2.0.1"
@@ -23,7 +23,7 @@ class BavariaProvider(DTMProvider):
23
23
  _author = "[H4rdB4se](https://github.com/H4rdB4se)"
24
24
  _is_community = True
25
25
  _instructions = None
26
- _extents = (50.56, 47.25, 13.91, 8.95)
26
+ _extents = [(50.56, 47.25, 13.91, 8.95)]
27
27
 
28
28
  def __init__(self, *args, **kwargs):
29
29
  super().__init__(*args, **kwargs)
@@ -15,7 +15,7 @@ class CanadaProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (76.49491845750764, 33.66564101989275, -26.69697497450798, -157.7322455868316)
18
+ _extents = [(76.49491845750764, 33.66564101989275, -26.69697497450798, -157.7322455868316)]
19
19
  _instructions = (
20
20
  "HRDEM coverage for Canada is limited. Make sure to check the "
21
21
  "[coverage map](https://geo.ca/imagery/high-resolution-digital"
@@ -16,7 +16,9 @@ class CzechProvider(WCSProvider, DTMProvider):
16
16
  _is_community = True
17
17
  _instructions = None
18
18
  _is_base = False
19
- _extents = (51.0576876059846754, 48.4917065572081754, 18.9775933665038821, 12.0428143585602161)
19
+ _extents = [
20
+ (51.0576876059846754, 48.4917065572081754, 18.9775933665038821, 12.0428143585602161)
21
+ ]
20
22
 
21
23
  _url = "https://ags.cuzk.cz/arcgis2/services/INSPIRE_Nadmorska_vyska/ImageServer/WCSServer" # pylint: disable=line-too-long
22
24
  _wcs_version = "1.0.0"
@@ -22,7 +22,7 @@ class DenmarkProvider(WCSProvider, DTMProvider):
22
22
  _is_community = True
23
23
  _is_base = False
24
24
  _settings = DenmarkProviderSettings
25
- _extents = (57.7690657013977, 54.4354651516217, 15.5979112056959, 8.00830949937517)
25
+ _extents = [(57.7690657013977, 54.4354651516217, 15.5979112056959, 8.00830949937517)]
26
26
 
27
27
  _instructions = (
28
28
  "ℹ️ This provider requires an access token. See [here](https://confluence"
@@ -36,6 +36,9 @@ class DenmarkProvider(WCSProvider, DTMProvider):
36
36
  _tile_size = 1000
37
37
 
38
38
  def get_wcs_parameters(self, tile):
39
+ if not self.user_settings.token:
40
+ raise ValueError("A token is required for this provider.")
41
+
39
42
  return {
40
43
  "identifier": "dhm_terraen",
41
44
  "bbox": (tile[1], tile[0], tile[3], tile[2]),
@@ -47,7 +47,7 @@ class DTMProvider(ABC):
47
47
  _settings: Type[DTMProviderSettings] | None = DTMProviderSettings
48
48
 
49
49
  """Bounding box of the provider in the format (north, south, east, west)."""
50
- _extents: tuple[float, float, float, float] | None = None
50
+ _extents: list[tuple[float, float, float, float]] | None = None
51
51
 
52
52
  _instructions: str | None = None
53
53
 
@@ -248,9 +248,12 @@ class DTMProvider(ABC):
248
248
  """
249
249
  lat, lon = lat_lon
250
250
  extents = cls._extents
251
- return extents is None or (
252
- extents[0] >= lat >= extents[1] and extents[2] >= lon >= extents[3]
253
- )
251
+ if extents is None:
252
+ return True
253
+ for extent in extents:
254
+ if extent[0] >= lat >= extent[1] and extent[2] >= lon >= extent[3]:
255
+ return True
256
+ return False
254
257
 
255
258
  @abstractmethod
256
259
  def download_tiles(self) -> list[str]:
@@ -16,7 +16,7 @@ class England1MProvider(WCSProvider, DTMProvider):
16
16
  _is_community = True
17
17
  _instructions = None
18
18
  _is_base = False
19
- _extents = (55.87708724246775, 49.85060473351981, 2.0842821419111135, -7.104775741839742)
19
+ _extents = [(55.87708724246775, 49.85060473351981, 2.0842821419111135, -7.104775741839742)]
20
20
 
21
21
  _url = "https://environment.data.gov.uk/geoservices/datasets/13787b9a-26a4-4775-8523-806d13af58fc/wcs" # pylint: disable=line-too-long
22
22
  _wcs_version = "2.0.1"
@@ -24,7 +24,7 @@ class FinlandProvider(WCSProvider, DTMProvider):
24
24
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
25
25
  _is_community = True
26
26
  _is_base = False
27
- _extents = (70.09, 59.45, 31.59, 19.08)
27
+ _extents = [(70.09, 59.45, 31.59, 19.08)]
28
28
 
29
29
  _url = "https://avoin-karttakuva.maanmittauslaitos.fi/ortokuvat-ja-korkeusmallit/wcs/v2"
30
30
  _wcs_version = "2.0.1"
@@ -38,6 +38,9 @@ class FinlandProvider(WCSProvider, DTMProvider):
38
38
  )
39
39
 
40
40
  def get_wcs_instance_parameters(self):
41
+ if not self.user_settings.api_key:
42
+ raise ValueError("API Key is required for this provider.")
43
+
41
44
  settings = super().get_wcs_instance_parameters()
42
45
  settings["auth"] = Authentication(
43
46
  username=self.user_settings.api_key, password=self.user_settings.api_key
@@ -15,7 +15,7 @@ class FlandersProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (51.5150730375579684, 50.6694992827160817, 5.9444417082210812, 2.5170092434134252)
18
+ _extents = [(51.5150730375579684, 50.6694992827160817, 5.9444417082210812, 2.5170092434134252)]
19
19
 
20
20
  _url = "https://geo.api.vlaanderen.be/el-dtm/wcs"
21
21
  _wcs_version = "1.0.0"
@@ -20,7 +20,17 @@ class FranceProvider(DTMProvider):
20
20
  _url = "https://data.cquest.org/ign/rgealti/repack/cog/RGEALTI_2-0_1M_COG_LAMB93-IGN69_FXX.vrt"
21
21
  _is_base = False
22
22
  # no extents, because it also has a few colonies throughout the world
23
- # _extents = (54.148101, 51.153098, 11.754046, 6.505772)
23
+ _extents = [
24
+ (51.2, 41.333, 9.55, -5.225), # France
25
+ (8.6038842, 1.1710017, -61.414905, -56.4689543), # Guyana
26
+ (16.5144664, 15.8320085, -61.809764, -61.0003663), # Guadeloupe
27
+ (14.8787029, 14.3948596, -61.2290815, -60.8095833), # Martinique
28
+ (-12.6365902, -13.0210119, 45.0183298, 45.2999917), # Mayotte
29
+ (-20.8717136, -21.3897308, 55.2164268, 55.8366924), # Reunion
30
+ (18.1375569, 17.670931, -63.06639, -62.5844019), # Saint Barthelemy
31
+ (18.1902778, 17.8963535, -63.3605643, -62.7644063), # Saint Martin
32
+ (47.365, 46.5507173, -56.6972961, -55.9033333), # Saint Pierre and Miquelon
33
+ ]
24
34
 
25
35
  def download_tiles(self) -> list[str]:
26
36
  with rasterio.open(
@@ -15,7 +15,7 @@ class HessenProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (51.66698, 49.38533, 10.25780, 7.72773)
18
+ _extents = [(51.66698, 49.38533, 10.25780, 7.72773)]
19
19
 
20
20
  _url = "https://inspire-hessen.de/raster/dgm1/ows"
21
21
  _wcs_version = "2.0.1"
@@ -18,7 +18,7 @@ class ItalyProvider(WCSProvider, DTMProvider):
18
18
  _is_community = True
19
19
  _instructions = None
20
20
  _is_base = False
21
- _extents = (47.15570815704503, 35.177652867276855, 19.720144130809693, 6.527697471770745)
21
+ _extents = [(47.15570815704503, 35.177652867276855, 19.720144130809693, 6.527697471770745)]
22
22
 
23
23
  _url = "http://tinitaly.pi.ingv.it/TINItaly_1_1/wcs"
24
24
  _wcs_version = "2.0.1"
@@ -27,7 +27,7 @@ class MecklenburgVorpommernProvider(WCSProvider, DTMProvider):
27
27
  _instructions = None
28
28
  _is_base = False
29
29
  _settings = MecklenburgVorpommernProviderSettings
30
- _extents = (54.8, 53, 14.5, 10.5)
30
+ _extents = [(54.8, 53, 14.5, 10.5)]
31
31
 
32
32
  _url = "https://www.geodaten-mv.de/dienste/dgm_wcs"
33
33
  _wcs_version = "2.0.1"
@@ -20,7 +20,7 @@ class NiedersachsenProvider(WMSProvider, DTMProvider):
20
20
  "to smooth the data."
21
21
  )
22
22
  _is_base = False
23
- _extents = (54.148101, 51.153098, 11.754046, 6.505772)
23
+ _extents = [(54.148101, 51.153098, 11.754046, 6.505772)]
24
24
 
25
25
  _url = "https://opendata.lgln.niedersachsen.de/doorman/noauth/dgm_wms"
26
26
  _source_crs = "EPSG:25832"
@@ -16,7 +16,9 @@ class NorwayProvider(WCSProvider, DTMProvider):
16
16
  _is_community = True
17
17
  _instructions = None
18
18
  _is_base = False
19
- _extents = (72.1016879476356962, 57.2738836442695103, 33.3365910058243742, -2.0075617181675725)
19
+ _extents = [
20
+ (72.1016879476356962, 57.2738836442695103, 33.3365910058243742, -2.0075617181675725)
21
+ ]
20
22
 
21
23
  _instructions = (
22
24
  "This is a topobathy dataset which means it includes water depth information as well. "
@@ -15,7 +15,7 @@ class NRWProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (52.6008271, 50.1506045, 9.5315425, 5.8923538)
18
+ _extents = [(52.6008271, 50.1506045, 9.5315425, 5.8923538)]
19
19
 
20
20
  _url = "https://www.wcs.nrw.de/geobasis/wcs_nw_dgm"
21
21
  _wcs_version = "2.0.1"
@@ -18,7 +18,7 @@ class REMAProvider(DTMProvider):
18
18
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
19
19
  _is_community = True
20
20
 
21
- _extents = (-53.5443873459092, -53.5443873459092, 179.99698443265999, -180)
21
+ _extents = [(-53.5443873459092, -53.5443873459092, 179.99698443265999, -180)]
22
22
 
23
23
  _instructions = (
24
24
  "This provider source includes 2 meter DEM data for the entire Antarctic region below 53 "
@@ -15,7 +15,9 @@ class SachsenAnhaltProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (53.0769416826493412, 50.8927195980075453, 13.3232545527125836, 10.5092298520646867)
18
+ _extents = [
19
+ (53.0769416826493412, 50.8927195980075453, 13.3232545527125836, 10.5092298520646867)
20
+ ]
19
21
 
20
22
  _url = "https://www.geodatenportal.sachsen-anhalt.de/wss/service/ST_LVermGeo_DGM1_WCS_OpenData/guest" # pylint: disable=line-too-long
21
23
  _wcs_version = "1.0.0"
@@ -58,7 +58,9 @@ class ScotlandProvider(DTMProvider):
58
58
  "Coverage for Scotland is very limited. "
59
59
  "Make sure to check the [coverage map](https://remotesensingdata.gov.scot/data#/map)."
60
60
  )
61
- _extents = (60.2151105070992756, 54.5525982243521881, -1.1045617513147328, -6.7070796770431951)
61
+ _extents = [
62
+ (60.2151105070992756, 54.5525982243521881, -1.1045617513147328, -6.7070796770431951)
63
+ ]
62
64
 
63
65
  _url = "https://srsp-catalog.jncc.gov.uk/search/product"
64
66
 
@@ -15,7 +15,9 @@ class SpainProvider(WCSProvider, DTMProvider):
15
15
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
16
16
  _is_community = True
17
17
  _is_base = False
18
- _extents = (43.9299999999999997, 27.6299999999999990, 4.9400000000000004, -18.2100000000000009)
18
+ _extents = [
19
+ (43.9299999999999997, 27.6299999999999990, 4.9400000000000004, -18.2100000000000009)
20
+ ]
19
21
 
20
22
  _url = "https://servicios.idee.es/wcs-inspire/mdt"
21
23
  _wcs_version = "2.0.1"
@@ -27,7 +27,7 @@ class SwitzerlandProvider(DTMProvider):
27
27
  _author = "[kbrandwijk](https://github.com/kbrandwijk)"
28
28
  _is_community = True
29
29
 
30
- _extents = (47.8308275417, 45.7769477403, 10.4427014502, 6.02260949059)
30
+ _extents = [(47.8308275417, 45.7769477403, 10.4427014502, 6.02260949059)]
31
31
 
32
32
  _url = (
33
33
  "https://ogd.swisstopo.admin.ch/services/swiseld/"
@@ -16,7 +16,7 @@ class USGSWCSProvider(WCSProvider, DTMProvider):
16
16
  _is_community = True
17
17
  _instructions = None
18
18
  _is_base = False
19
- _extents = (50.0, 17.0, -64.0, -162.0)
19
+ _extents = [(50.0, 17.0, -64.0, -162.0)]
20
20
 
21
21
  _url = "https://elevation.nationalmap.gov/arcgis/services/3DEPElevation/ImageServer/WCSServer"
22
22
  _wcs_version = "1.0.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: maps4fs
3
- Version: 1.8.191
3
+ Version: 1.8.193
4
4
  Summary: Generate map templates for Farming Simulator from real places.
5
5
  Author-email: iwatkot <iwatkot@gmail.com>
6
6
  License: MIT License
@@ -1,7 +1,7 @@
1
1
  maps4fs/__init__.py,sha256=9StBkLgyOqEwZ4tQ0AQJ9LaEMhR0_tr3FtZxZKKa8FQ,1780
2
2
  maps4fs/logger.py,sha256=HQrDyj72mUjVYo25aR_-_SxVn2rfFjDCNbj-JKJdSnE,1488
3
3
  maps4fs/generator/__init__.py,sha256=zZMLEkGzb4z0xql650gOtGSvcgX58DnJ2yN3vC2daRk,43
4
- maps4fs/generator/dem.py,sha256=dyzCFfDL6W_nCjwi9uF3-PCiL36rfOh3jGXlDuwiJYg,11795
4
+ maps4fs/generator/dem.py,sha256=qHYkVtph5NXo2fRfRoYwKGzpnx-6-TIRg1rNg0EmtDU,11740
5
5
  maps4fs/generator/game.py,sha256=NZaxj5z7WzMiHzAvQyr-TvVjGoHgqGldM6ZsItuYyzA,11292
6
6
  maps4fs/generator/map.py,sha256=BV7OTrv3zHud6DbTGpm3TU5JNWJlKgRhZUGfs_wxntw,11513
7
7
  maps4fs/generator/qgis.py,sha256=Es8hLuqN_KH8lDfnJE6He2rWYbAKJ3RGPn-o87S6CPI,6116
@@ -20,30 +20,30 @@ maps4fs/generator/component/base/component_image.py,sha256=2QnJ9xm0D54v4whg7bc1s
20
20
  maps4fs/generator/component/base/component_mesh.py,sha256=43JY8X0ugIWAJq5y11vTJM9UfbL7SSugj8LkdPmni10,8871
21
21
  maps4fs/generator/component/base/component_xml.py,sha256=6OO1dKoceO1ACk7-k1oGtnkfNud8ZN3u3ZNjdNMpTqw,3967
22
22
  maps4fs/generator/dtm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- maps4fs/generator/dtm/arctic.py,sha256=4_4O6rArtTJCSTknrBeP5IjLi2QN3v9xmbmm5qiiWL0,2629
24
- maps4fs/generator/dtm/baden.py,sha256=69nyaY-6lwrXyNcWlOGPzXQK726COiRJGE2UvADqaZQ,1039
25
- maps4fs/generator/dtm/bavaria.py,sha256=7njrEvSCYAC8ZVyvS-_84iXHhWA0oHKrEqSzxdnZuGs,4293
26
- maps4fs/generator/dtm/canada.py,sha256=lYONwm6aNX5cjVggR3AiZZF9dlCDAWg0M8RMaObog8s,1288
27
- maps4fs/generator/dtm/czech.py,sha256=I0hK7jUfp10LM-18vFGcqe9-y3uVJDXLlrzB3l_fZ8A,1070
28
- maps4fs/generator/dtm/denmark.py,sha256=GMB9PPxXth6V1v3XuURVWVabJf4xlr158bKfeIIisek,1476
29
- maps4fs/generator/dtm/dtm.py,sha256=eTegemDvvbDekxPJA8SJFgtTAwVLi5jfDXa3FxJHsyE,16845
30
- maps4fs/generator/dtm/england.py,sha256=YyCYwnNUJuBeeMNUozfKIj_yNjHpGeuH1Mz0NiAJL-U,1122
31
- maps4fs/generator/dtm/finland.py,sha256=Chi3-3sanLIYpipjtPpTu9tqnL3DYcnygSDCPm1s24c,1753
32
- maps4fs/generator/dtm/flanders.py,sha256=81pKkrM40SeOe1LSlcsTNXSmUNpofC4D454DG6WFSyA,1037
33
- maps4fs/generator/dtm/france.py,sha256=aPHrHiDr7nBND_yAh-xnhKeS5OJXJ3Qwb1s3Kkh5OJA,2050
34
- maps4fs/generator/dtm/hessen.py,sha256=dYu7TUXICaFMI1sc2l1i3ZDdM5fecXkj5jcz5ZuXIOw,964
35
- maps4fs/generator/dtm/italy.py,sha256=GCyEaNNLgNzjvvvpo8JfXTSijqeoG6TheOXNpSUWZaU,1222
36
- maps4fs/generator/dtm/mv.py,sha256=6ropUQGY_cnkvzmZqiYg53MxzkP2tXXzslVaAbJPd1E,1362
37
- maps4fs/generator/dtm/niedersachsen.py,sha256=8HS8suZU3lKe2mPR1FVCSNHSsW5AuebIu_De3mpCQe8,1273
38
- maps4fs/generator/dtm/norway.py,sha256=kSsNZGEqb3IQ3a82UCJ_Iw_0wqdCgEvuRJ4JpEK7QYU,1269
39
- maps4fs/generator/dtm/nrw.py,sha256=1zMa10O0NdQbiTwOa7XXGrx3NhdHUqRXI4yBn_Scb2M,958
40
- maps4fs/generator/dtm/rema.py,sha256=oCjFFcycBaDp2sJ8VYSzcH5kgQ_lvbLxYwsBnT7C5bI,2631
41
- maps4fs/generator/dtm/sachsenanhalt.py,sha256=-Vjw3f8k1JtSpTGI07vbpmyF5TU0wvGt2VCmJnPmL5M,1128
42
- maps4fs/generator/dtm/scotland.py,sha256=Od4dDMuCM_iteewjGBbmZXJ26S0bDwrhRhXeV4HyyOA,4803
43
- maps4fs/generator/dtm/spain.py,sha256=HxN0MvrtRqqeTmhl47q60-1DGaMDb2wq6neMcDlDCl8,1005
23
+ maps4fs/generator/dtm/arctic.py,sha256=QB1pVtbRJvpTqKwlxzYTqR7vTS6d-WucRwTgxQv4u_o,2631
24
+ maps4fs/generator/dtm/baden.py,sha256=PQTMEPm9hrO3nKbv_DXA9oNYnGK_0ei41Q_DhtethX0,1041
25
+ maps4fs/generator/dtm/bavaria.py,sha256=nH2wTxiIdQgKotauTqD-zztwFgfZzIdym2sjmSqfujM,4295
26
+ maps4fs/generator/dtm/canada.py,sha256=XJ_za2LDV9PEV7hmjPnzdwPbpr6ezAR73-HDVaTuKPk,1290
27
+ maps4fs/generator/dtm/czech.py,sha256=TBx_XJG740bfs3vCFHOvwV7W8fcVWCArFgX_2r5t-kc,1086
28
+ maps4fs/generator/dtm/denmark.py,sha256=JFuBRrCJTMXe_vdO3gRCwsnZ3nZOp_Y6671Kq8aXRGM,1591
29
+ maps4fs/generator/dtm/dtm.py,sha256=DSBtk-i1lF_GWGYttmD2LWfmPhx8WzrUROrAULE2RHQ,16937
30
+ maps4fs/generator/dtm/england.py,sha256=3URUm7uLH_RYXcQdDW3Vt09GWKAE8RAy1ZFJB94kXOA,1124
31
+ maps4fs/generator/dtm/finland.py,sha256=VpXpvCgzbyKA6VGSa7ikSzE4B-cLfR1_2zOHvS8delc,1870
32
+ maps4fs/generator/dtm/flanders.py,sha256=LltmowbS84_DaBHAS9XYoJPMunX6sWGy6zaVACHj5Ro,1039
33
+ maps4fs/generator/dtm/france.py,sha256=nk7MBJujBWJJzzy_pE5WsdyBCH16OQ5bnz4MsK-MVIQ,2654
34
+ maps4fs/generator/dtm/hessen.py,sha256=DtKBGvahM9fHq5h07M2n6N5X1G5CLDau4HMEe_2LqvY,966
35
+ maps4fs/generator/dtm/italy.py,sha256=mMzFtaxQYLF2rEeqX8k9R_LEmTWACFjPXRDY7wjv2Pk,1224
36
+ maps4fs/generator/dtm/mv.py,sha256=mpJhu2eDPDdI2J3xaegL6x58WWiiwPVFDOuSLEp_b5I,1364
37
+ maps4fs/generator/dtm/niedersachsen.py,sha256=XP1As-XMKS3Xmx0Mz1_8kxEQqGoGF3KKlrIpm_5VGYo,1275
38
+ maps4fs/generator/dtm/norway.py,sha256=PzYFJOx3Y6tuhir2Hy8BDSoI9FzQu01__dEzWrQXM1g,1285
39
+ maps4fs/generator/dtm/nrw.py,sha256=5udFCDFplLbQGoEwzwZz4hLPKTaR3hjDvA8gcbyh_7w,960
40
+ maps4fs/generator/dtm/rema.py,sha256=G5p-66jutUsGYtj0I1S07WV9E--ExU39RWzCBlgxtuU,2633
41
+ maps4fs/generator/dtm/sachsenanhalt.py,sha256=UvLrQVxJX30BqtNbKZyR6EJc-vS5fLyanh6fntjYj2k,1144
42
+ maps4fs/generator/dtm/scotland.py,sha256=kUGPNjn3mQPOU9sgK3k-uwumPG2wrRFLaDMyPMh06Jw,4819
43
+ maps4fs/generator/dtm/spain.py,sha256=A5QScsrd_bkVlf2n9ZfXBL9z_YoXpLsm_5FWs-5nd_o,1021
44
44
  maps4fs/generator/dtm/srtm.py,sha256=hQJC8yf1WgC7PPoQ36AkXTPMEFp7l-cwHAEGA_2GAqQ,4522
45
- maps4fs/generator/dtm/switzerland.py,sha256=GC5fbWL5kkiWksB-H4dWl4I7GSmOsUZ_ywPpfkxBTo8,3547
46
- maps4fs/generator/dtm/usgs_wcs.py,sha256=Uu93aYeUxYyQJupswRlmxENzSBjHQOPiG20KrWhiAtg,1019
45
+ maps4fs/generator/dtm/switzerland.py,sha256=Jn3qYVEps_K6cH-9rMfB_zoXMxhzWQKPnlKkSE-TehE,3549
46
+ maps4fs/generator/dtm/usgs_wcs.py,sha256=X8VxdhyH0-EciGE_X-KgrAM6sVLTGssYIhtebOj8MPI,1021
47
47
  maps4fs/generator/dtm/utils.py,sha256=I-wUSA_J85Xbt8sZCZAVKHSIcrMj5Ng-0adtPVhVmk0,2315
48
48
  maps4fs/generator/dtm/base/wcs.py,sha256=PRG3IIwj2RWZh2y3d3taCxEsulDcwSYmsaaseNcjW3M,2538
49
49
  maps4fs/generator/dtm/base/wms.py,sha256=14ssC11SeitP9PYJwXx6669w4JZ5Z4KSobV9pWtYVQE,2292
@@ -51,8 +51,8 @@ maps4fs/toolbox/__init__.py,sha256=zZMLEkGzb4z0xql650gOtGSvcgX58DnJ2yN3vC2daRk,4
51
51
  maps4fs/toolbox/background.py,sha256=RclEqxEWLbMxuEkkegQP8jybzugwQ1_R3rdfDe0s21U,2104
52
52
  maps4fs/toolbox/custom_osm.py,sha256=X6ZlPqiOhNjkmdD_qVroIfdOl9Rb90cDwVSLDVYgx80,1892
53
53
  maps4fs/toolbox/dem.py,sha256=z9IPFNmYbjiigb3t02ZenI3Mo8odd19c5MZbjDEovTo,3525
54
- maps4fs-1.8.191.dist-info/LICENSE.md,sha256=pTKD_oUexcn-yccFCTrMeLkZy0ifLRa-VNcDLqLZaIw,10749
55
- maps4fs-1.8.191.dist-info/METADATA,sha256=nSskpcjZm-GPqIC4ggfP-PN9WXpuWa9L8zneJqKzeXU,45000
56
- maps4fs-1.8.191.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
57
- maps4fs-1.8.191.dist-info/top_level.txt,sha256=Ue9DSRlejRQRCaJueB0uLcKrWwsEq9zezfv5dI5mV1M,8
58
- maps4fs-1.8.191.dist-info/RECORD,,
54
+ maps4fs-1.8.193.dist-info/LICENSE.md,sha256=pTKD_oUexcn-yccFCTrMeLkZy0ifLRa-VNcDLqLZaIw,10749
55
+ maps4fs-1.8.193.dist-info/METADATA,sha256=0G0njuv26ZzrXkOvxfG1wY5UE7L1uFxB_g3PD7ldWSA,45000
56
+ maps4fs-1.8.193.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
57
+ maps4fs-1.8.193.dist-info/top_level.txt,sha256=Ue9DSRlejRQRCaJueB0uLcKrWwsEq9zezfv5dI5mV1M,8
58
+ maps4fs-1.8.193.dist-info/RECORD,,