Skip to content

Commit

Permalink
geojson #3
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-h committed Apr 15, 2017
1 parent c394f0e commit e75cc35
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions stolpersteine.geojson
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
---
{
"type": "FeatureCollection",
"features": [
{% for item in site.list %}
{
"type": "Feature",
"geometry":{
"type": "Point",
"coordinates": [{{ item.x }}, {{ item.y }}]
},
"properties": {
"name": "{{ item.title }}",
"address": "{{ item.address }}",
"names": [
{% for s in item.steine %}
"{{ s[1] }}{% assign l = s[2].size %}{% if l > 0 %} {{ s[2] }}{% endif %}"
{% if forloop.last %}{% else %},{% endif %}
{% endfor %}
]
}
} {% if forloop.last %}{% else %},{% endif %}
{% endfor %}
]
}

0 comments on commit e75cc35

Please sign in to comment.