| | 1 | This opinionated preset is designed to quickly specify the type of a building, replacing the generic ```building=yes```, with a click from the toolbar. It includes several groups, covering the most popular building=* combinations. Many statistical applications of OSM data can benefit greatly from concrete building types. |
| | 2 | |
| | 3 | The last option in each group is a "generic" one ("industrial", "commercial", "residential", etc), intended for the cases where you can't narrow down the tag further. |
| | 4 | |
| | 5 | Some options are narrower than the definitions described on the OSM wiki. This is intentional. Take note: |
| | 6 | |
| | 7 | * ```industrial > water tower (heavy)``` is intended for huge permanent water towers made of brick and similar materials. Rule of thumb: if it looks like it can have its own address, use this. It can be used on a closed way only. The option applies ```man_made=water_tower``` in addition to specifying a building. If the tower is no longer functional, remove it. |
| | 8 | * ```storage tank``` and ```silo``` both also add accompanying ```man_made``` tags. Similar to water towers, I suggest using these for major structures that look like buildings — as such, these can only be applied to a closed way (polygon). |
| | 9 | * ```chimney``` likewise is intended for prominent objects like cooling towers of a power station, or huge brick factory towers. Closed way only. |
| | 10 | |
| | 11 | Don't forget to add the preset to the JOSM toolbar! |
| | 12 | |
| | 13 | == See also == |
| | 14 | * [[Presets/Quick-highways]] |
| | 15 | * [[Presets/OneClick]] |
| | 16 | |
| | 17 | == The preset itself == |
| | 18 | |
| | 19 | {{{ |
| | 20 | #!preset |
| | 21 | <presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0" |
| | 22 | shortdescription="Quick-Buildings" |
| | 23 | description="Presets for quickly typing buildings" |
| | 24 | author="Kilkenni" |
| | 25 | version="1.[[revision]]_[[date]]"> |
| | 26 | |
| | 27 | <group name="Quick-Buildings" icon="quick.svg"> |
| | 28 | <group name="building=*" icon="residential/unknown.svg"> |
| | 29 | <item name="1 apartments" icon="residential/apartments.svg" type="node,closedway"> |
| | 30 | <key key="building" value="apartments" /> |
| | 31 | </item> |
| | 32 | |
| | 33 | <item name="2 house" icon="residential/house.svg" type="node,closedway"> |
| | 34 | <key key="building" value="house" /> |
| | 35 | </item> |
| | 36 | |
| | 37 | <item name="3 dormitory" icon="residential/dorm.svg" type="node,closedway"> |
| | 38 | <key key="building" value="dormitory" /> |
| | 39 | </item> |
| | 40 | |
| | 41 | <item name="4 terrace/townhouse" icon="residential/townhouse.svg" type="node,closedway"> |
| | 42 | <key key="building" value="terrace" /> |
| | 43 | </item> |
| | 44 | |
| | 45 | <item name="5 residential" icon="residential/residential.svg" type="node,closedway"> |
| | 46 | <key key="building" value="residential" /> |
| | 47 | </item> |
| | 48 | </group> |
| | 49 | |
| | 50 | <group name="building=* automotive" icon="auto/garage.svg"> |
| | 51 | <item name="1 garage" icon="auto/garage.svg" type="node,closedway"> |
| | 52 | <key key="building" value="garage" /> |
| | 53 | </item> |
| | 54 | |
| | 55 | <item name="2 garages" icon="auto/garages.svg" type="node,closedway"> |
| | 56 | <key key="building" value="garages" /> |
| | 57 | </item> |
| | 58 | |
| | 59 | <item name="3 carport" icon="auto/carport.svg" type="node,closedway"> |
| | 60 | <key key="building" value="carport" /> |
| | 61 | </item> |
| | 62 | |
| | 63 | <item name="4 parking" icon="auto/parking.svg" type="node,closedway"> |
| | 64 | <key key="building" value="parking" /> |
| | 65 | </item> |
| | 66 | </group> |
| | 67 | <group name="building=* auxiliary" icon="aux/aux.svg"> |
| | 68 | <item name="1 shed" icon="aux/shed.svg" type="node,closedway"> |
| | 69 | <key key="building" value="shed" /> |
| | 70 | </item> |
| | 71 | |
| | 72 | <item name="2 service" icon="aux/service.svg" type="node,closedway"> |
| | 73 | <key key="building" value="service" /> |
| | 74 | </item> |
| | 75 | |
| | 76 | <item name="3 tower" icon="presets/tower/tower.svg" type="node,closedway"> |
| | 77 | <key key="building" value="tower" /> |
| | 78 | </item> |
| | 79 | |
| | 80 | <item name="4 roof" icon="aux/roof.svg" type="node,closedway"> |
| | 81 | <key key="building" value="roof" /> |
| | 82 | </item> |
| | 83 | |
| | 84 | <item name="5 guardhouse" icon="presets/service/police_non_public.svg" type="node,closedway"> |
| | 85 | <key key="building" value="guardhouse" /> |
| | 86 | </item> |
| | 87 | |
| | 88 | <item name="6 toilets" icon="presets/service/toilets.svg" type="node,closedway"> |
| | 89 | <key key="building" value="toilets" /> |
| | 90 | </item> |
| | 91 | |
| | 92 | <item name="7 skywalk" icon="aux/skywalk.svg" type="node,closedway"> |
| | 93 | <key key="building" value="bridge" /> |
| | 94 | </item> |
| | 95 | |
| | 96 | <item name="8 construction" icon="aux/construction.svg" type="node,closedway"> |
| | 97 | <key key="building" value="construction" /> |
| | 98 | </item> |
| | 99 | </group> |
| | 100 | <group name="building=* commercial" icon="comm/commercial.svg"> |
| | 101 | <item name="1 office" icon="comm/office.svg" type="node,closedway"> |
| | 102 | <key key="building" value="office" /> |
| | 103 | </item> |
| | 104 | |
| | 105 | <item name="2 retail" icon="comm/retail.svg" type="node,closedway"> |
| | 106 | <key key="building" value="retail" /> |
| | 107 | </item> |
| | 108 | |
| | 109 | <item name="3 kiosk" icon="comm/kiosk.svg" type="node,closedway"> |
| | 110 | <key key="building" value="kiosk" /> |
| | 111 | </item> |
| | 112 | |
| | 113 | <item name="4 hotel" icon="comm/hotel.svg" type="node,closedway"> |
| | 114 | <key key="building" value="hotel" /> |
| | 115 | </item> |
| | 116 | |
| | 117 | <item name="5 commercial" icon="comm/commercial.svg" type="node,closedway"> |
| | 118 | <key key="building" value="commercial" /> |
| | 119 | </item> |
| | 120 | </group> |
| | 121 | <group name="building=* industrial" icon="industrial/industrial.svg"> |
| | 122 | <item name="1 warehouse" icon="industrial/boxes.svg" type="node,closedway"> |
| | 123 | <key key="building" value="warehouse" /> |
| | 124 | </item> |
| | 125 | |
| | 126 | <item name="2 water tower (heavy)" icon="presets/tower/water_tower.svg" type="closedway"> |
| | 127 | <key key="building" value="tower" /> |
| | 128 | <key key="man_made" value="water_tower" /> |
| | 129 | </item> |
| | 130 | |
| | 131 | <item name="3 storage tank (liquid)" icon="industrial/tank.svg" type="closedway"> |
| | 132 | <key key="building" value="storage_tank" /> |
| | 133 | <key key="man_made" value="storage_tank" /> |
| | 134 | </item> |
| | 135 | |
| | 136 | <item name="4 silo (solid)" icon="industrial/silo.svg" type="closedway"> |
| | 137 | <key key="building" value="silo" /> |
| | 138 | <key key="man_made" value="silo" /> |
| | 139 | </item> |
| | 140 | |
| | 141 | <item name="5 chimney (heavy)" icon="industrial/chimney.svg" type="closedway"> |
| | 142 | <key key="building" value="chimney" /> |
| | 143 | <key key="man_made" value="chimney" /> |
| | 144 | </item> |
| | 145 | |
| | 146 | <item name="6 industrial" icon="industrial/industrial.svg" type="node,closedway"> |
| | 147 | <key key="building" value="industrial" /> |
| | 148 | </item> |
| | 149 | </group> |
| | 150 | <group name="building=* agricultural" icon="agri/greenhouse.svg"> |
| | 151 | <item name="1 greenhouse" icon="agri/greenhouse.svg" type="node,closedway"> |
| | 152 | <key key="building" value="greenhouse" /> |
| | 153 | </item> |
| | 154 | |
| | 155 | <item name="2 barn" icon="agri/barn.svg" type="node,closedway"> |
| | 156 | <key key="building" value="barn" /> |
| | 157 | </item> |
| | 158 | |
| | 159 | <item name="3 cowshed" icon="agri/creepy-cow.svg" type="node,closedway"> |
| | 160 | <key key="building" value="cowshed" /> |
| | 161 | </item> |
| | 162 | |
| | 163 | <item name="4 sty" icon="agri/pig.svg" type="node,closedway"> |
| | 164 | <key key="building" value="sty" /> |
| | 165 | </item> |
| | 166 | |
| | 167 | <item name="5 livestock" icon="agri/livestock.svg" type="node,closedway"> |
| | 168 | <key key="building" value="livestock" /> |
| | 169 | </item> |
| | 170 | </group> |
| | 171 | <group name="building=* civic" icon="civic/civic.svg"> |
| | 172 | <item name="1 kindergarten" icon="civic/kinder.svg" type="node,closedway"> |
| | 173 | <key key="building" value="kindergarten" /> |
| | 174 | </item> |
| | 175 | |
| | 176 | <item name="2 school" icon="civic/school.svg" type="node,closedway"> |
| | 177 | <key key="building" value="school" /> |
| | 178 | </item> |
| | 179 | |
| | 180 | <item name="3 college" icon="civic/college.svg" type="node,closedway"> |
| | 181 | <key key="building" value="college" /> |
| | 182 | </item> |
| | 183 | <item name="4 university" icon="civic/uni.svg" type="node,closedway"> |
| | 184 | <key key="building" value="university" /> |
| | 185 | </item> |
| | 186 | |
| | 187 | <item name="5 hospital" icon="civic/hospital.svg" type="node,closedway"> |
| | 188 | <key key="building" value="hospital" /> |
| | 189 | </item> |
| | 190 | |
| | 191 | <item name="6 fire station" icon="presets/service/firebrigade.svg" type="node,closedway"> |
| | 192 | <key key="building" value="fire_station" /> |
| | 193 | </item> |
| | 194 | |
| | 195 | <item name="7 transportation" icon="civic/train.svg" type="node,closedway"> |
| | 196 | <key key="building" value="transportation" /> |
| | 197 | </item> |
| | 198 | |
| | 199 | <item name="8 government" icon="presets/service/townhall.svg" type="node,closedway"> |
| | 200 | <key key="building" value="government" /> |
| | 201 | </item> |
| | 202 | |
| | 203 | <item name="9 civic" icon="civic/civic.svg" type="node,closedway"> |
| | 204 | <key key="building" value="civic" /> |
| | 205 | </item> |
| | 206 | </group> |
| | 207 | </group> |
| | 208 | </presets> |
| | 209 | |
| | 210 | }}} |