Last active
August 26, 2022 08:48
-
-
Save rsimon/650b8ae2996fe22ad55b5a9a60f54340 to your computer and use it in GitHub Desktop.
A Peripleo-compatible "gazetteer" (with a single LP place record)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"@context": "https://raw.githubusercontent.com/LinkedPasts/linked-places/master/linkedplaces-context-v1.3.jsonld", | |
"features": [ | |
{ | |
"@id": "https://kima.org/place/1234", | |
"type": "Feature", | |
"properties": { | |
"title": "A place title", | |
"total_records": 123 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
34.999167, | |
32.819167 | |
] | |
}, | |
"names": [ | |
{ | |
"toponym": "An alternative name", | |
"lang": "en" | |
} | |
], | |
"types": [ | |
{ | |
"label": "Settlement" | |
} | |
], | |
"descriptions": [ | |
{ | |
"value": "A description for this place", | |
"lang": "en" | |
} | |
], | |
"links": [ | |
{ | |
"type": "exactMatch", | |
"identifier": "https://www.wikidata.org/wiki/Q41621" | |
} | |
], | |
"depictions": [ | |
{ | |
"@id": "https://upload.wikimedia.org/wikipedia/commons/9/9e/Israel_Haifa1_tango7174.jpg", | |
"title": "Haifa, Israel. Panoramic view from Mount Carmel, with the Shrine of the Báb and its Terraces in the foreground." | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment