Skip to content

v0.1.27

Compare
Choose a tag to compare
@somnathrakshit somnathrakshit released this 23 Jun 16:40
· 187 commits to master since this release

New Features

  • add python 3.9 checks to CI (#46)

    • Currently 3.6 to 3.8 is checked. 3.9 is available and stable and would IMHO be a good addition to the CI
  • create BallTree of List of Locations (#45)

    • this is a base functionality for efficient distance calculation and matching algorithm since geocoordinates can not be naturally sorted by lat/lon to achieve closest neighbour comparisons
  • Get closest location (#43)

    • Given a location find the closes other location from a list of locations.
      E.g. find the closest country for a city. (e.g. to check that the city is actually located in the country)
  • Calculating the distance between 2 locations (#42)

    • The idea is to calculate the distance between the given location to the specified location.
  • Country list from Erdem (#41)

  • Add env var for loc.db path (#28), thanks to @jamesnunn

    • Adds customisable location for the loc.db download
      to allow apps to function if the module is not
      writeable by the user e.g. with AWS lambdas.

The entire path and filename is required:

GEOGRAPY_DB=/path/to/loc.db

  • Make docs available via release process (#6)
    • scripts/doc already does some basic work but might need some love e.g. fixing the error

Bugs Squashed