GithubHelp home page GithubHelp logo

investigativedata / ftm-geocode Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 1.0 20.39 MB

Batch parse and geocode addresses from followthemoney entities. Simply geocoding just address strings works as well, of course.

License: GNU General Public License v3.0

Makefile 1.52% Python 97.87% Dockerfile 0.62%

ftm-geocode's Introduction

ftm-geocoder

Batch parse and geocode addresses from followthemoney entities. Simply geocoding just address strings works as well, of course.

There are as well some parsing / normalization helpers.

Features

  • Parse/normalize addresses via libpostal
  • Geocoding via geopy
  • Cache geocoding results in a sql database (using dataset)
  • Optional fallback geocoders when preferred geocoder doesn't match
  • Create, update and merge Address entities for ftm data

Usage

command line

ftmgeo --help

The command line interface is designed for piping input / output streams, but for each command a -i <input_file> and -o <output_file> can be used as well.

Geocode an input stream of ftm entities with nominatim and google maps as fallback (geocoders are tried in the given order):

cat entitis.ftm.ijson | ftmgeo geocode -g nominatim -g google > entities_geocoded.ftm.ijson

This looks for the address prop on input entities and creates address entities with reference to the input entities. The output contains all entities from the input stream plus newly created addresses.

If an input entity is itself an Address entity, it will be geocoded as well and their props (country, city, ...) will be merged with the geocoder result.

During the process, addresses are parsed and normalized and looked up in the address cache database before actual geocoding. After geocoding, new addresses are added to the cache database.

Address ids will be rewritten based on normalization (addressEntity refs are updated on other entities), to keep the original ids, add the flag --no-rewrite-ids

Geocoders can be set via GEOCODERS and default to nominatim

More information:

ftmgeo geocode --help

geocoding just address strings

csv format (for all csv input streams) first column address, optional second column country (name or code) and third language for postal context

To ftm address entities:

cat addresses.csv | ftmgeo geocode --input-format=csv > addresses.ftm.ijson

To csv:

cat addresses.csv | ftmgeo geocode --input-format=csv --output-format=csv > addresses.csv

formatting / normalization

Get a cleaned address line from messy input strings.

cat addresses.txt | ftmgeo format-line > clean_addresses.csv

libpostal parsed components

Get a csv with all the parsed components from libpostal.

cat addresses.txt | ftmgeo parse-components > components.csv

mapping

Generate address entities from input stream (without geocoding):

cat entities.ftm.ijson | ftmgeo map > entities.ftm.ijson
cat addresses.csv | ftmgeo map --input-format=csv > addresses.ftm.ijson

database cache

ftmgeo cache --help

During geocoding, addresses are first looked up in the local cache, and new geocoding results are added.

Ignore cache during geocoding (new results are still written to it):

ftmgeo geocode --no-cache ...

Export cache:

ftmgeo cache iterate > geocoded_addresses.ftm.ijsonl
ftmgeo cache iterate --output-format=csv > geocoded_addresses.csv

Populate cache:

csv input: address_id,canonical_id,original_line,result_line,country,lat,lon,geocoder,geocoder_place_id

optional field: geocoder_raw - json of geocoder response

cat geocoded_addresses.csv | ftmgeo cache populate

apply cache / re-geocode

ftmgeo cache apply-csv --help

To get addresses from cache without geocoding from a csv input stream, passing through additional csv data from input:

cat addresses.csv | ftmgeo cache apply-csv --output-format csv > results.csv

Only get missing to re-geocode (e.g. with a different geocoder):

cat addresses.csv | ftmgeo cache apply-csv --output-format csv --get-missing | ftmgeo geocode

Configuration

geocoders

Default geocoders: env var GEOCODERS They are used in the given order

Make sure to configure the geocoders as needed for geopy (endpoints, api keys, ...):

export FTMGEO_<GEOCODERNAME>_<SETTING>=...

Persistent cache

The cache database is set via FTM_STORE_URI (so it is the same as the ftm store, if any, otherwise it defaults to sqlite:///cache.db

Installation

Required external is libpostal, see installation instructions there.

Once libpostal is installed on your system, you can install:

pip install ftm-geocoder[postal]

Verify that this works without errors:

ftmgeo --help

echo "Cowley Road, Cambridge, UK" | ftmgeo geocode --input-format=csv --no-header

Testing

make install
make test

ftm-geocode's People

Contributors

simonwoerpel avatar

Watchers

 avatar  avatar

Forkers

ethrgeist

ftm-geocode's Issues

Headers are not present in output file

The default setting is that headers are present in the input file, it should be reasonable to assume that headers are also present in the output file, but they are not.

This can be confusing and lead to offset errors.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.