Commit 9b394e44 authored by Eric Duminil's avatar Eric Duminil
Browse files

Constants not used anymore

parent 8ebe58c8
Showing with 4 additions and 3 deletions
+4 -3
...@@ -42,9 +42,10 @@ CITYGML_SERVER = "https://opengeodata.lgl-bw.de/data/lod2" ...@@ -42,9 +42,10 @@ CITYGML_SERVER = "https://opengeodata.lgl-bw.de/data/lod2"
RASTER = 2 # [km] RASTER = 2 # [km]
BUNDESLAND = 'bw' BUNDESLAND = 'bw'
WGS84 = CRS.from_epsg(4326) # UTM32N, used in BW. https://epsg.io/32632
LOCAL_CRS = CRS.from_epsg(32632) # UTM32N, used in BW. https://epsg.io/32632 TO_LOCAL_CRS = Transformer.from_crs(CRS.from_epsg(4326),
TO_LOCAL_CRS = Transformer.from_crs(WGS84, LOCAL_CRS, always_xy=True) CRS.from_epsg(32632),
always_xy=True)
UTM = 32 UTM = 32
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment