This file contains hidden or 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
| Eine kurze Dokumentation, wie man Postgres/Postgis unter Windows ohne Installation betreibt: | |
| - PG-Binaries (ZIP) herunterladen und entpacken | |
| http://www.enterprisedb.com/products-services-training/pgbindownload | |
| - Batch-Datei lt. Anhang bzw. lt. | |
| http://www.postgresonline.com/journal/archives/172-Starting-PostgreSQL-in-windows-without-install.html | |
| im Haupt-Verzeichnis speichern (das Verzeichnis, in dem /bin zu finden ist). | |
| - Beim ERSTEN Start der run.bat muss die gekennzeichnete Zeile ausgeführt, danach aber wieder auskommentiert werden. |
This file contains hidden or 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
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
| <html lang="en"> | |
| <head> | |
| <title>Dashboard Example</title> | |
| <style type="text/css"> | |
| body, html { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; } | |
| iframe { border: none; width: 100%; height: 100%; display: none; } | |
| iframe.active { display: block;} | |
| </style> | |
| <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| import logging | |
| from collections import defaultdict | |
| import overpy | |
| from shapely.geometry.polygon import Polygon | |
| from shapely.geometry.multipolygon import MultiPolygon | |
| def ways2poly(ways): |