API Einbindung via WordPress Plugin und Shortcode
District ID | District Name |
---|---|
3 | Nordstadt |
10 | Fruerlund |
4 | Westliche Höhe |
1 | Altstadt |
9 | Jürgensby |
13 | Tarup |
8 | Sandberg |
5 | Friesischer Berg |
7 | Südstadt |
6 | Weiche |
12 | Engelsby |
11 | Mürwik |
2 | Neustadt |
Geo Maps
Informationen zum Thema Karten.
EPSG:3857 / Maps
WGS 84 / Pseudo-Mercator -- Spherical Mercator, Google Maps, OpenStreetMap, Bing, ArcGIS, ESRI
Anbieter und Services
https://ircama.github.io/osm-carto-tutorials/editing-guidelines/
https://osm2pgsql.org/doc/manual.html
https://www.esriuk.com/en-gb/map-gallery/overview
https://wiki.openstreetmap.org/wiki/Main_Page
https://tools.geofabrik.de/calc/
https://www.azavea.com/blog/2015/12/21/tools-for-getting-data-out-of-openstreetmap-and-into-desktop-gis/
https://ircama.github.io/osm-carto-tutorials/osm-rendering-process/
https://osm2pgsql.org/examples/raster-tiles/
https://imagico.de/blog/en/easier-rendering-of-the-antarctic-land-ice/
https://github.com/Zaczero/openstreetmap-ng?tab=readme-ov-file
https://www.netzwolf.info/geo/math/tilebrowser.html?tx=101183&ty=98111&tz=17#tile
https://github.com/enzet/map-machine?tab=readme-ov-file
https://github.com/ghaerr/agg-2.6
https://grass.osgeo.org/learn/gallery/
https://carto.com/customer-stories
https://desktop.arcgis.com/de/arcmap/latest/manage-data/datatypes/about-geographic-data-formats.htm
Transformation von Koordinaten
Links
https://towardsdatascience.com/displaying-geographic-information-using-custom-map-tiles-c0e3344909a4
nginx tileserver
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name maps.grain.one;
charset utf-8;
location / {
proxy_pass http://localhost:8081;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
}
ssl_certificate /etc/letsencrypt/live/maps.grain.one/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/maps.grain.one/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = maps.grain.one) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name maps.grain.one;
return 404; # managed by Certbot
}
service tileserver
[Unit]
Description=Instance to serve the gr_tileserver
After=network.target
[Service]
Type=simple
User=awendelk
Group=awendelk
DynamicUser=true
WorkingDirectory=/opt/tileserver
PrivateTmp=true
ExecStart=/opt/tileserver/gr_tileserver -p 8081 -tiles /data
ExecReload=/bin/kill -HUP ${MAINPID}
RestartSec=1
Restart=always
[Install]
WantedBy=multi-user.target
Build GrainLib with Proj Library
sudo apt install proj-bin
sudo apt install libproj-dev
rm -rf build/
cmake -S . -B build
cmake --build build
cd build/
./GrainLib