Skip to content

Instantly share code, notes, and snippets.

@joelotz
Created August 22, 2022 23:11
Show Gist options
  • Save joelotz/30aaf7008f1cf881c63dbecc33bb7ce4 to your computer and use it in GitHub Desktop.
Save joelotz/30aaf7008f1cf881c63dbecc33bb7ce4 to your computer and use it in GitHub Desktop.
My JOSM tag preset file
<?xml version="1.0" encoding="UTF-8"?>
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
author="Joe Lotz"
version="0.1"
description="My personal preset file for the tags that I frequently use">
<group name="A-MyPresets">
<item name="Sidewalk" type="way">
<link wiki="Tag:footway%3Dsidewalk" />
<label text="Inserting a unidirectional sidewalk" />
<key key="highway" value="footway" />
<key key="footway" value="sidewalk" />
<key key="surface" value="concrete" />
</item>
<item name="Way-Crossing" type="way">
<link wiki="Key:crossing" />
<label text="Inserting a crossing" />
<combo key="crossing" text="Marked?" values="marked,unmarked" default="unmarked" />
<key key="highway" value="footway" />
<key key="footway" value="crossing" />
<key key="tactile_paving" value="no" />
<key key="crossing:island" value="no" />
<key key="button_operated" value="no" />
<key key="crossing:signals" value="no" />
</item>
<item name="Node-Crossing" type="node">
<link wiki="Key:crossing" />
<label text="Inserting a crossing" />
<combo key="crossing" text="Marked?" values="marked,unmarked" default="unmarked" />
<key key="highway" value="crossing" />
<key key="tactile_paving" value="no" />
<key key="crossing:island" value="no" />
</item>
<item name="Curb" type="node">
<link wiki="Key:kerb" />
<label text="Inserting a curb/(kerb)" />
<combo key="tactile_paving" text="Tactile?" values="yes,no" default="yes" />
<key key="barrier" value="kerb" />
<key key="kerb" value="lowered" />
<key key="wheelchair" value="yes" />
</item>
</group>
</presets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment