Metadata-Version: 2.1
Name: geocodertools
Version: 0.1.7
Summary: Functions to work with Geo coordinates, reverse geo coding and getting city names out of coordinates without internet
Home-page: https://github.com/MartinThoma/geocodertools
Author: Martin Thoma
Author-email: info@martin-thoma.de
Maintainer: Martin Thoma
Maintainer-email: info@martin-thoma.de
License: MIT
Download-URL: https://github.com/MartinThoma/geocodertools
Keywords: geocoder,longitude,latitude
Platform: Linux
Platform: MacOS X
Platform: Windows
Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
Requires-Dist: argparse
Requires-Dist: nose

[![Build Status](https://travis-ci.org/MartinThoma/geocodertools.svg?branch=master)](https://travis-ci.org/MartinThoma/geocodertools)
[![Coverage Status](https://img.shields.io/coveralls/MartinThoma/geocodertools.svg)](https://coveralls.io/r/MartinThoma/geocodertools?branch=master)
[![Documentation Status](http://img.shields.io/badge/docs-latest-brightgreen.svg)](http://pythonhosted.org/geocodertools)
[![Code Health](https://landscape.io/github/MartinThoma/geocodertools/master/landscape.svg)](https://landscape.io/github/MartinThoma/geocodertools/master)

## Installation

```bash
# pip install geocodertools
$ geocodertools --lng 8.40 --lat 49.3
```

## Usage

### Command line

```bash
$ geocodertools --lng 8.40 --lat 49.3
admin1 code: 08
admin2 code: 00
admin3 code: 07338
admin4 code: 07338007
alternatenames: 
asciiname: Dudenhofen
cc2: 
country code: DE
dem: 105
elevation: 
feature class: P
feature code: PPLA4
geonameid: 2934737
latitude: 49.31861
longitude: 8.38861
modification date: 2011-04-25
name: Dudenhofen
population: 5709
timezone: Europe/Berlin
```

### Python

```python
import geocodertools.reverse as geo
city = geo.get_city({'latitude': 8.2, 'longitude': 49.2})
```

