Urgent.News

What's breaking now, across thousands of outlets.

Editions โ–พ

Tech

ARGOS v0.0.1 is live: a digital twin of Kefalonia

Three weeks ago I started building a map that argues back. Today it is public. ๐Ÿ—บ๏ธ argos-geo.org/map What you can do: Click any building, road, beach, or POI See travel time to the fire station and nearest ferry port Toggle wildfire risk and flash-flood layers Find the lighthouse nobody asked about (102 minutes, boat-only) The stack: PostGIS + FastAPI + MapLibre GL + PMTiles. Hosted on GitHubโ€ฆ

Three weeks ago, author Panagis Tzivras initiated the creation of a map that challenges conventional approaches. Today, the digital twin of Kefalonia is available to the public at argos-geo.org/map. Users can interact with the map by clicking on various elements like buildings, roads, beaches, and points of interest. The map also provides information on travel time to the nearest fire station and ferry port, as well as layers displaying wildfire risk and flash-flood zones.

Interestingly, one can discover the lighthouse that was previously overlooked, requiring a boat journey to reach it (a 102-minute voyage). The technology behind the map includes PostGIS, FastAPI, MapLibre GL, and PMTiles, all hosted on GitHub Pages, ensuring zero costs per month. The data utilized in the map comes from OpenStreetMap, Copernicus DEM, Sentinel-2, NASA FIRMS, and EFFIS, all of which are open and properly attributed.

Currently, the map presents a static snapshot of Kefalonia. However, the author has plans for future enhancements, including real-time feeds and a potential pilot project with a local municipality. Tzivras has previously documented the process of building this digital twin, highlighting its unique discovery of a lighthouse that went unnoticed by others. This project falls under the categories of open source, geospatial technology, PostgreSQL, and digital twin development.

Written by urgent.news from Dev.to's reporting โ€” not their text. Machine-written โ€” may contain errors; check the original before relying on it.

Read the original at dev.to โ†’

More in Tech

.NET 10 Numeric String Sorting: Put File 10 After File 9

When I display generated filenames, .NET 10 numeric string sorting gives me the order people usually expect: file9.txt before file10.txt . The new CompareOptions.NumericOrdering flag handles digit runs without a handwritten natural-sort parser. That sounds like a presentation-only change. It is not.

  • .NET 10 introduces NumericOrdering flag for filename sorting
  • Numeric sorting orders files like file9.txt before file10.txt
  • Leading zeros don't affect numeric value for equality checks

More from Thursday 20 August โ†’