-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
85 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# @see https://wiki.openstreetmap.org/wiki/Empty_relations | ||
# @see overpass equivalent https://overpass-turbo.eu/s/1hot | ||
|
||
# About discussion of automating this: | ||
# - https://lists.openstreetmap.org/pipermail/talk/2021-April/086462.html | ||
# - (idea about detect clusters) https://lists.openstreetmap.org/pipermail/talk/2021-April/086476.html |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"> | ||
<!-- Example from https://wiki.openstreetmap.org/wiki/Customising_JOSM_Presets --> | ||
<item name="Petrol / Gas Station"> | ||
<link href="https://wiki.openstreetmap.org/wiki/DE:Tag:amenity=fuel" /> | ||
<label text="Tankstelle" /> | ||
<key key="amenity" value="fuel" /> | ||
<combo key="name" text="Name" values="Shell,BP,Esso,Murco" default="" /> | ||
<combo key="brand" text="Brand" values="Shell,BP,Esso,Murco" default="" /> | ||
<check key="fuel:diesel" text="Diesel" /> | ||
<check key="fuel:octane_91" text="Petrol 91 octane " /> | ||
<check key="fuel:octane_95" text="Petrol 95 octane" /> | ||
<check key="fuel:octane_98" text="Petrol 98 octane" /> | ||
<check key="fuel:biogas" text="Biogas" /> | ||
<check key="fuel:lpg" text="LPG" /> | ||
<check key="fuel:hydrogen" text="Wasserstoff" /> | ||
<check key="fuel:electricity" text="Charger for electric cars" /> | ||
<optional> | ||
<text key="opening hours" text="Opening Hours" default="" /> | ||
<link href="https://wiki.openstreetmap.org/wiki/Key:opening_hours?uselang=en" /> | ||
<check key="payment:maestro_card" text="Master-Card" default="off" /> | ||
<check key="payment:banknotes" text="Cash" default="off" /> | ||
</optional> | ||
</item> | ||
</presets> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"> | ||
<item name="Oneway highway" type="way"> | ||
<label text="Inserting a unidirectional highway" /> | ||
|
||
<combo key="highway" text="Type" values="trunk,motorway" /> | ||
<text key="name" text="Name (e.g. Angel Road)" /> | ||
<text key="ref" text="Ref (e.g. A406)" /> | ||
|
||
<!-- This is a oneway preset, so make oneway default --> | ||
<check key="oneway" text="Oneway" default="on" /> | ||
|
||
<!-- Always setting asphalt surface --> | ||
<key key="surface" value="asphalt" /> | ||
</item> | ||
</presets> |