Metadata-Version: 1.1
Name: mapturner
Version: 0.1.2
Summary: A command line utility for generating data for locator maps.
Home-page: https://github.com/nprapps/mapturner
Author: Christopher Groskopf
Author-email: cgroskopf@npr.com
License: MIT
Description: mapturner
        =========
        
        A command line utility for generating topojson from various data sources.
        
        Important links:
        
        * Repository:           https://github.com/nprapps/mapturner
        * Issues:               https://github.com/nprapps/mapturner/issues
        
        Install
        -------
        
        ```
        pip install mapturner
        ```
        
        You will also need the following non-Python dependencies installed:
        Requirements:
        
        * GDAL (ogr2ogr)
        * topojson
        
        Usage
        -----
        
        Define a YAML configuration file, for example:
        
        ```
        bbox: '77.25 24.28 91.45 31.5'
        layers:
            countries:
                type: 'shp'
                path: 'http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_admin_0_countries.zip'
                id-property: 'NAME'
                properties:
                    - 'country=NAME'
            quakes:
                type: 'csv'
                path: 'examples/nepal.csv'
        ```
        
        Then run it!
        
        ```
        mapturner input.yaml output.json
        ```
        
        The output will be a topojson file containing topo equivalents of all the input layers.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
