Skip to content

Commit 3f3e84c

Browse files
committed
v0.5.1
1 parent 415cec9 commit 3f3e84c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ built-in string formatting, and setting a rate limit (`--delay`) of one request
4848
For each row where geocoding succeeds, `latitude` and `longitude` will be populated. If you hit an error, or a rate limit,
4949
run the same query and pick up where you left off.
5050

51+
The resulting table layout can be visualized with [datasette-cluster-map](https://datasette.io/plugins/datasette-cluster-map).
52+
5153
Under the hood, this package uses the excellent [geopy](https://geopy.readthedocs.io/en/latest/) library, which is stable and thoroughly road-tested. If you need help understanding a particular geocoder's options, consult [geopy's documentation](https://geopy.readthedocs.io/en/latest/#module-geopy.geocoders).
5254

5355
### Supported Geocoders
@@ -58,6 +60,7 @@ The CLI currently supports these geocoders:
5860
- `googlev3`
5961
- `mapquest` (and `open-mapquest`)
6062
- `nominatim`
63+
- `mapbox`
6164

6265
More will be added soon.
6366

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import os
33

4-
VERSION = "0.5.0"
4+
VERSION = "0.5.1"
55

66
requirements = ["click", "sqlite_utils", "geopy"]
77

0 commit comments

Comments
 (0)