Personal tools
@Pleiades in the Fediverse
21 November 2024

Pleiades Export Updates 2024-11-21:

1 new and 60 updated places.

1. Downloads: pleiades.stoa.org/downloads

2. pleiades.datasets: github.com/isawnyu/pleiades.da:

"main" branch:

49e3a2b6 - updated legacy csv
7cf63b91 - updated json
no change: rdf/ttl
f9893587 - updated gis package
9d928df3 - updated data quality
4a9d6ab7 - updated bibliography
b7923270 - updated indexes
7e1ed194 - updated sidebar

3. pleiades-geojson: github.com/ryanfb/pleiades-geo:

aeab1695 - updated geojson and names index

21 November 2024

Updated Pleiades Sidebar data:

There are 28,342 Pleiades matches across all 6 datasets (cflago, edhgeo, itinere, manto, nomisma, wikidata). 5,634 of these are reciprocated by Pleiades. 19,229 unique Pleiades places are referenced.

github.com/isawnyu/pleiades.da

21 November 2024

Pleiades < -- > Wikidata updates:

12154 Wikidata entities include a Pleiades ID property and 4769 Pleiades entities include a Wikidata ID property. Of these, 4765 are mutual (bidirectional). 6341 Pleiades resources to which Wikidata links can be added after they are checked. 4 Wikidata items to which Pleiades IDs can be added after they are checked. 90 Wikidata items that each link to more than one Pleiades ID.

github.com/isawnyu/pleiades_wi

20 November 2024

Export Updates 2024-11-20:
Pleiades gazetteer of ancient places

7 updated places.

1. Downloads: pleiades.stoa.org/downloads

2. pleiades.datasets: github.com/isawnyu/pleiades.da:

"main" branch:

89883b44 - updated legacy csv
e51e26ea - updated json
no change: rdf/ttl
6fa8888d - updated gis package
473cf3ab - updated data quality
364cbbc6 - updated bibliography
3ec8248d - updated indexes
935522f2 - updated sidebar

3. pleiades-geojson: github.com/ryanfb/pleiades-geo:

no change

20 November 2024

Updated Pleiades Sidebar data:

There are 28,331 Pleiades matches across all 6 datasets (cflago, edhgeo, itinere, manto, nomisma, wikidata). 5,582 of these are reciprocated by Pleiades. 19,219 unique Pleiades places are referenced.

New data from itinere, nomisma, and wikidata were incorporated.

github.com/isawnyu/pleiades.da

@Pleiades in the Fediverse - More…
You are here: Home Project news and content updates Pleiades Project Blog Pleiades dataset API wrapper

Skip to content. | Skip to navigation

Pleiades dataset API wrapper

Creators: Daniele Fusi
Contributors: Tom Elliott
Copyright © The Contributors. Sharing and remixing permitted under terms of the Creative Commons Attribution 3.0 License (cc-by).
Last modified Jun 25, 2024 06:01 PM
A guest post by Daniele Fusi in the Pleiades gazetteer "Projects and Partners" series describing a simple command-line interface tool for importing Pleiades JSON data into a relational database, indexing it, and providing an application programming interface service to other applications, enabling them to lookup places with a combination of search parameters.

Get the code for the Pleiades Dataset API Wrapper at https://github.com/vedph/pleiades-api

In the context of several projects related to the Classical world, ranging from general-purpose content creation frameworks for digital editions (Cadmus) to more specialized tools like meta-repositories of epigraphic documents, I have often found myself in need of a quick way to use the Pleiades database through an API service, from both frontend and backend solutions. To this end, I created a simple command-line interface (CLI) tool for importing Pleiades JSON data into an ad-hoc designed relational database management system (RDBMS) (primarily Postgres with Postgis), quickly index it, and provide an application programming interface (API) service to lookup places with a combination of search parameters. Even if until now I had no need for adding more optional features (like authentication, balancing, and the like), this could be accomplished in a few hours’ work, as the infrastructure is already in place. Also, the API service is ready to be containerized into Docker, also providing data dumps from Postgres to be automatically imported during container startup. This allows firing up a fully working API service with cross-origin resource sharing (CORS) support, Swagger frontend and fresh data in a few minutes. When an updated version of Pleiades comes out, you just have to rebuild the container with a new data dump. Of course, once the CLI tool has imported the database, you can also bypass my service completely and use the database as you prefer. The CLI tool also provides a command to interactively build SQL code to query the database. Full source code is available at https://github.com/vedph/pleiades-api.