User:Bk
Jump to navigation
Jump to search
Ich bin in Erftstadt (NRW) und in Greifswald (MV) und Umgebung unterwegs. Zum loggen benutze ich ein AMOD AGL3080.
Links
Nik2Img - Mapnik tool
Name | Link | Description | Author | License |
---|---|---|---|---|
OSM History Viewer | http://osmhv.openstreetmap.de/index.jsp | Visualizes changesets and history | AGPL 3+ | |
OSM Restriction Analyser | http://osm.virtuelle-loipe.de/restrictions/ | Visualizes turn restrictions on a map. | Langläufer | |
OpenLinkMap | http://olm.openstreetmap.de/ | Visualizes links on a map. Supported keys: wikipedia=*, website=*, phone=*, ... | Alexander Matheisen | GPL-v3 |
CCTV Map | http://osm.vdska.de/ | Visualizes man_made=surveillance and surveillance=* tags on a map. | Johannes Böck | |
User blocks | http://www.openstreetmap.org/blocks | Shows a list of users that have been temporarily or permanently blocked | ||
Query-to-map | http://toolserver.org/~kolossos/osm/index.php | A script to show the results of a XAPI query on a map. | Kolossos | |
OpenStreetView | http://openstreetview.org/ | Collaborative, open alternative to Google Street View. | John McKerrell | source available; unknown license |
bogustimestamp.py | http://bitbucket.org/lawgon/osmindia/src/tip/bogustimestamp.py | Add bogus datestamp to gpx file created by qlandkarte without time info. | Kenneth Gonsalves | BSD |
OSM India | http://openstreetmap.org.in/ | India specific Mapnic style | ||
Make your own Map Arts | http://www.khtml.org/mapart/ | Fun site to create a mosaic from map tiles | ||
OSM History Viewer | http://osm.cdauth.eu/history-viewer/ | Visualise the changes in a single changeset and analyse the history of a relation. | Candid Dauth | AGPL-v3 |
Name | Link | Description | Author | License |
---|---|---|---|---|
Statistisches Bundesamt Deutschland - Suchen im Gemeindeverzeichnis | link | Query data on German municipalities. | ||
_sightwalk | http://sightwalk.de/ | Google Street View competitor covering some German cities. Uses osm data and allows to derive POIs and other information for osm from the images.[1] | panogate GmbH | - |
Related to License change
- http://fred.dev.openstreetmap.org/
- http://ni.kwsn.net/~toby/OSM/license_count.html
- http://osm.informatik.uni-leipzig.de/map/
- http://odbl.de/germany.html
- http://matt.dev.openstreetmap.org/treemap.png
Vector-Tiling
- Cartagen
- Kothic JS
- GSoC 2012: Data Tile Service, siehe auch diesen Faden auf OSM-dev.
- GSoC 2012 Projekt, um KDE's Marble auf (OSM-)Vektor Rendering vorzubereiten (Ander Pijoan). Siehe Faden auf OSM-dev.
- Some more notes on OSM vector-tiling OSM-dev
- OSMT
- OJW's tile data server
- Tile data server
- Trapi
Use OSM API with wget
- Open a changeset:
wget --http-user=USERNAME --http-password='PASSWORD' -S -O- --header "X_HTTP_METHOD_OVERRIDE: PUT" --post-data='<osm><changeset><tag k="created_by" v="wget"/><tag k="comment" v="CHANGESET_COMMENT"/></changeset></osm>' 'http://api06.dev.openstreetmap.org/api/0.6/changeset/create' | tee wget-output.log
- List your open changesets:
wget --http-user=USERNAME --http-password='PASSWORD' -S -O- 'http://api06.dev.openstreetmap.org/api/0.6/changesets?open=&display_name=USERNAME' | tee wget-output.log
- Upload a diff:
wget --http-user=USERNAME --http-password='PASSWORD' -S -O- --post-file DIFF_FILE 'http://api06.dev.openstreetmap.org/api/0.6/changeset/CHANGESET_ID/upload' | tee wget-output.log