30 lines
983 B
Python
30 lines
983 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 31.01.22
|
|
|
|
"""
|
|
|
|
# MAPS
|
|
DEFAULT_LAT = 50.00
|
|
DEFAULT_LON = 7.00
|
|
DEFAULT_ZOOM = 8.0
|
|
DEFAULT_SRID = 4326
|
|
DEFAULT_SRID_RLP = 25832
|
|
|
|
# Needed to redirect to LANIS
|
|
## Values to be inserted are [zoom_level, x_coord, y_coord]
|
|
LANIS_LINK_TEMPLATE = "https://geodaten.naturschutz.rlp.de/kartendienste_naturschutz/index.php?lang=de&zl={}&x={}&y={}&bl=tk_rlp_tms_grau&bo=1&lo=0.8,0.8,0.8,0.6,0.8,0.8,0.8,0.8,0.8&layers=eiv_recorded,eiv_unrecorded,kom_recorded,kom_unrecorded,oek_recorded,oek_unrecorded,ema_recorded,ema_unrecorded,mae&service=kartendienste_naturschutz"
|
|
## This look up table (LUT) defines different zoom levels on the size of the calculate area of a geometry.
|
|
LANIS_ZOOM_LUT = {
|
|
1000000000: 6,
|
|
100000000: 10,
|
|
10000000: 17,
|
|
1000000: 20,
|
|
100000: 25,
|
|
10000: 28,
|
|
1000: 30,
|
|
500: 31,
|
|
}
|