Skip to content

Instantly share code, notes, and snippets.

@rsimon
Last active August 26, 2022 08:48
Show Gist options
  • Save rsimon/650b8ae2996fe22ad55b5a9a60f54340 to your computer and use it in GitHub Desktop.
Save rsimon/650b8ae2996fe22ad55b5a9a60f54340 to your computer and use it in GitHub Desktop.
A Peripleo-compatible "gazetteer" (with a single LP place record)
Display the source blob
Display the rendered blob
Raw
{
"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