Garganorn is intended to be a test bed for experimenting with adding location data to the ATmosphere.
Currently, the project implements an ATProtocol XRPC server designed to serve static location datasets ("gazetteers").
WARNING: This code has not been formally released and interfaces WILL change without warning. YMMV. Patches welcome.
The project is named after the earliest recorded mammoth goose.
Right now, Garganorn supports either Foursquare Open Source Places or Overture Maps as a data source. You will need to modify garganorn/__main__.py
if you want to use Foursquare OSP instead of Overture.
Look in scripts/import-fsq-extract.sh
and scripts/import-overture-extract.sh
for examples of how to import data. Example:
$ scripts/import-overture-extract.sh -122.5137 37.7099 -122.3785 37.8101
Building one of these databases takes a few minutes for a reasonable bounding box on a reasonable machine with a reasonable Internet connection. You must build one of these databases locally for the service to have data to serve.
Install and start a Flask server on localhost:5000
:
pip install .
python garganorn
Query:
curl 'http://127.0.0.1:5000/xrpc/com.atproto.repo.getRecord?repo=gazetteer.social&collection=org.overturemaps.id&rkey=08f2830829d8c099036c7f5f8bba30ec'
Result:
{
"uri": "at://gazetteer.social/org.overturemaps.id/08f2830829d8c099036c7f5f8bba30ec",
"value": {
"$type": "social.gazetteer.place",
"name": "Full House Picnic Site",
"location": {
"$type": "social.gazetteer.place#location",
"latitude": "37.776077",
"longitude": "-122.433400"
},
"attributes": {
"addresses": [
{
"country": "US",
"freeform": null,
"locality": "San Francisco",
"postcode": null,
"region": "CA"
}
],
"categories": {
"alternate": [
"attractions_and_activities",
"public_plaza"
],
"primary": "park"
},
"id": "08f2830829d8c099036c7f5f8bba30ec",
"names": {
"common": null,
"primary": "Full House Picnic Site",
"rules": null
}
}
},
"_query": {
"elapsed_ms": 3,
"parameters": {
"collection": "org.overturemaps.id",
"repo": "repo.local",
"rkey": "08f2830829d8c099036c7f5f8bba30ec"
}
}
}
Query:
$ curl 'http://127.0.0.1:5000/xrpc/social.gazetteer.listNearestRecords?latitude=37.776145&longitude=-122.433898&limit=1'
Result:
{
"records": [
{
"$type": "social.gazetteer.listNearestRecords#record",
"distance_m": 56,
"uri": "at://gazetteer.social/org.overturemaps.id/08f2830829d8c099036c7f5f8bba30ec",
"value": {
"$type": "social.gazetteer.place",
"name": "Full House Picnic Site",
"location": {
"$type": "social.gazetteer.place#location",
"latitude": "37.776077",
"longitude": "-122.433400"
},
"attributes": {
"addresses": [
{
"country": "US",
"freeform": null,
"locality": "San Francisco",
"postcode": null,
"region": "CA"
}
],
"categories": {
"alternate": [
"attractions_and_activities",
"public_plaza"
],
"primary": "park"
},
"id": "08f2830829d8c099036c7f5f8bba30ec",
"names": {
"common": null,
"primary": "Full House Picnic Site",
"rules": null
}
}
}
}
],
"_query": {
"elapsed_ms": 10,
"parameters": {
"collection": "org.overturemaps.id",
"latitude": "37.776145",
"limit": 1,
"longitude": "-122.433898",
"repo": "gazetteer.social"
}
}
}
com.atproto.repo.getRecord
As aforementioned, this project is under development and should not be used for production purposes. I intend to try to track the work of the lexicon.community ATGeo working group as it evolves.
Patches are extremely welcome.
Come find us in the BlueSky API Touchers Discord.
It's MIT licensed, yo. See LICENSE for details. If it breaks, you get to keep the pieces.