Personal tools
Pleiades in the Fediverse
12 December 2025

Export Updates 2025-12-12:
Pleiades gazetteer of ancient places

16 updated places.

1. Downloads: pleiades.stoa.org/downloads

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

"main" branch:

e9b0d258 - updated json
no change: rdf/ttl
8bdbc298 - updated gis package
1d93d051 - updated data quality
d0fe2c82 - updated bibliography
5a36d95b - updated indexes
44f7c9a0 - updated sidebar

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

2458f0d7 - updated geojson and names index

4. pleiades_wikidata: github.com/isawnyu/pleiades_wi:

31a94daa - updated pleiades wikidata

10 December 2025

Export Updates 2025-12-10:
Pleiades gazetteer of ancient places

73 updated places.

1. Downloads: pleiades.stoa.org/downloads

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

"main" branch:

8fcf5a87 - updated json
no change: rdf/ttl
43a87ed6 - updated gis package
8fd5929f - updated data quality
a925eb02 - updated bibliography
1ed39c97 - updated indexes
b2a9d061 - updated sidebar

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

b8434d5c - updated geojson

4. pleiades_wikidata: github.com/isawnyu/pleiades_wi:

60ff91b5 - updated pleiades wikidata

09 December 2025

Export Updates 2025-12-09:
Pleiades gazetteer of ancient places

39 updated places.

1. Downloads: pleiades.stoa.org/downloads

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

"main" branch:

e237ff99 - updated json
no change: rdf/ttl
3ad25d29 - updated gis package
dcadd1f7 - updated data quality
f958b8ec - updated bibliography
3d59a68d - updated indexes
8ba20705 - updated sidebar

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

e49431e3 - updated geojson and names index

4. pleiades_wikidata: github.com/isawnyu/pleiades_wi:

bfebc2fe - updated pleiades wikidata

08 December 2025

Last week in the (1-8 December 2025) the Pleiades editorial college published 8 new and 441 updated place resources, reflecting the work of Jeffrey Becker, Tom Elliott, Maxime Guénette, Greta Hawes, Brady Kiesling, R. Scott Smith, Scott Vanderbilt and Enes Yılandiloğlu.

A list of all new and changed resources, complete with titles, descriptions, bylines, change summaries, and links to the actual gazetteer entries, as well as an overview map, may be read on the blog at pleiades.stoa.org/news/blog/la

08 December 2025

Export Updates 2025-12-08:
Pleiades gazetteer of ancient places

8 new and 116 updated places.

1. Downloads: pleiades.stoa.org/downloads

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

"main" branch:

ce2f0fe1 - updated json
no change: rdf/ttl
aa5aa265 - updated gis package
b0683460 - updated data quality
b6b5cce9 - updated bibliography
4b6edc88 - updated indexes
b5e676f5 - updated sidebar

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

f313b5b7 - updated geojson and names index

4. pleiades_wikidata: github.com/isawnyu/pleiades_wi:

6d8abf43 - updated pleiades wikidata

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.