OfflineReverseGeocode VS timezones-api

Compare OfflineReverseGeocode vs timezones-api and see what are their differences.

OfflineReverseGeocode

Perform reverse geocoding locally and offline (by AReallyGoodName)

timezones-api

A Datasette-powered API for finding the time zone for a latitude/longitude point (by simonw)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
OfflineReverseGeocode timezones-api
1 2
482 27
- -
0.0 0.0
over 4 years ago over 1 year ago
Java Python
GNU General Public License v3.0 or later -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

OfflineReverseGeocode

Posts with mentions or reviews of OfflineReverseGeocode. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-03.
  • SpatiaLite: A Spatial Extension to SQLite
    3 projects | news.ycombinator.com | 3 Apr 2021
    A kd-tree is the generalized data structure that can do log(n) lookups of nearest in any dimensions. I wrote an implementation for nearest to a geographical point years ago (since ported to many other languages): https://github.com/AReallyGoodName/OfflineReverseGeocode

    A less generalized solution is to grid things up (quad tree and bsp trees) as you implied above but the kd-tree is the generalized solution without edge cases (what if the majority of points of interest end up in a single grid square in your example?). A kd-tree is essentially what a sort list is for one dimensional data but instead supports multiple dimensions.

timezones-api

Posts with mentions or reviews of timezones-api. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-28.
  • SpatiaLite: Library extending SQLite to support Spatial SQL capabilities
    3 projects | news.ycombinator.com | 28 Jan 2024
    I wrote a tutorial on SpatiaLite here: https://datasette.io/tutorials/spatialite - "Building a location to time zone API with SpatiaLite"

    It shows how to use SpatiaLite + Datasette to build an API that can tell you what timezone a latitude/longitude point is in, using data derived from OpenStreetMap via https://github.com/evansiroky/timezone-boundary-builder

    Here's a demo: https://timezones.datasette.io/timezones/by_point?longitude=... - add ".json" to the URL for the JSON output.

  • SpatiaLite: A Spatial Extension to SQLite
    3 projects | news.ycombinator.com | 3 Apr 2021
    It had been quite a while since a major release, but then SpatiaLite 5.0 came out a couple of months ago with some very significant new features - the K-Nearest-Neighbor stuff is particularly interesting. https://www.gaia-gis.it/fossil/libspatialite/wiki?name=5.0.0...

    I've built a few fun demos using SpatiaLite and Datasette. Here's an API that tells you the timezone for a latitude longitude point:

    https://timezones-api.datasette.io/timezones/by_point?longit... - implementation here: https://github.com/simonw/timezones-api

    And here's the same thing for which US county a point is within: https://us-counties.datasette.io/counties/county_for_latitud... - implementation here: https://github.com/simonw/us-counties-datasette

    I've also built an experimental Datasette plugin that lets you draw a shape on a Leaflet map to generate a GeoJSON polygon, then uses SpatiaLite to show you geometries that are contained by that drawn polygon. I wrote about that here: https://simonwillison.net/2021/Jan/24/drawing-shapes-spatial...

What are some alternatives?

When comparing OfflineReverseGeocode and timezones-api you can also consider the following projects:

us-counties-datasette - A Datasette instance exposing names, FIPS codes and polygons of US counties

sqlite-utils - Python CLI utility and library for manipulating SQLite databases