glaciers-in-archives/snowman

View on GitHub
examples/non-html-content/templates/museums.json

Summary

Maintainability
Test Coverage
{
    "type": "FeatureCollection",
    "features": [
        {{ range $i, $m := $ }}
        {{ if $i }},{{ end }}{
            "type": "Feature",
            "properties": {
                "name": "{{ (index $m "itemLabel") }}"
            },
            "geometry": {
                "type": "Point",
                "coordinates": [
                    {{ (index $m "lon") }},
                    {{ (index $m "lat") }}
                ]
            }
        }
        {{ end }}
    ]
}