Skip to content

Commit

Permalink
Drop unneeded quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
quincylvania committed Nov 11, 2024
1 parent b651578 commit 19e7ea6
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions renderer/layers/trails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@ layers:
- trail: no
attributes: &trail_attributes
- key: OSM_ID
value: "${feature.id}"
value: ${feature.id}
- key: OSM_TYPE
value: "${feature.osm_type}"
value: ${feature.osm_type}
- key: OSM_VERSION
value: "${feature.osm_version}"
value: ${feature.osm_version}
- key: OSM_TIMESTAMP
value: "${feature.osm_timestamp}"
value: ${feature.osm_timestamp}
- key: OSM_CHANGESET
value: "${feature.osm_changeset}"
value: ${feature.osm_changeset}
- key: OSM_USER_NAME
value: "${feature.osm_user_name}"
value: ${feature.osm_user_name}
- key: LENGTH_M
value: ${feature.length('m')}
- key: access
Expand Down Expand Up @@ -308,17 +308,17 @@ layers:
shelter_type: lean_to
attributes: &poi_attributes
- key: OSM_ID
value: "${feature.id}"
value: ${feature.id}
- key: OSM_TYPE
value: "${feature.osm_type}"
value: ${feature.osm_type}
- key: OSM_VERSION
value: "${feature.osm_version}"
value: ${feature.osm_version}
- key: OSM_TIMESTAMP
value: "${feature.osm_timestamp}"
value: ${feature.osm_timestamp}
- key: OSM_CHANGESET
value: "${feature.osm_changeset}"
value: ${feature.osm_changeset}
- key: OSM_USER_NAME
value: "${feature.osm_user_name}"
value: ${feature.osm_user_name}
- key: MIN_LAT
value: ${feature.min_lat}
- key: MIN_LON
Expand Down Expand Up @@ -594,17 +594,17 @@ layers:
- type: multipolygon
attributes: &barrier_attributes
- key: OSM_ID
value: "${feature.id}"
value: ${feature.id}
- key: OSM_TYPE
value: "${feature.osm_type}"
value: ${feature.osm_type}
- key: OSM_VERSION
value: "${feature.osm_version}"
value: ${feature.osm_version}
- key: OSM_TIMESTAMP
value: "${feature.osm_timestamp}"
value: ${feature.osm_timestamp}
- key: OSM_CHANGESET
value: "${feature.osm_changeset}"
value: ${feature.osm_changeset}
- key: OSM_USER_NAME
value: "${feature.osm_user_name}"
value: ${feature.osm_user_name}
- key: canoe
tag_value: canoe
- key: intermittent
Expand Down

0 comments on commit 19e7ea6

Please sign in to comment.