Metadata-Version: 1.1
Name: area
Version: 1.1.0
Summary: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox'sgeojson-area for Python
Home-page: https://github.com/scisco/area
Author: Alireza J (Scisco)
Author-email: scisco7@gmail.com
License: BSD-2-Clause
Description: geojson-area
        ============
        
        .. image:: https://travis-ci.org/scisco/area.svg?branch=develop
            :target: https://travis-ci.org/scisco/area
        
        .. image:: https://badge.fury.io/py/area.svg
            :target: http://badge.fury.io/py/area
        
        
        
        Calculate the area inside of any `GeoJSON <http://geojson.org/>`_ geometry. This is a port of Mapbox's `geojson-area <https://github.com/mapbox/geojson-area>`_ for Python.
        
        Installation
        ------------
        
        .. code::
        
          $ pip install area
        
        Usage
        -----
        
        Simply pass a geojson string or python dictionary to the area function and get the area.
        
        .. code::
        
          >>> from area import area
          >>> obj = {'type':'Polygon','coordinates':[[[-180,-90],[-180,90],[180,90],[180,-90],[-180,-90]]]}
          >>> area(obj)
          511207893395811.06
        
        Test
        ----
        
        .. code::
        
          $ python test.py
        
        
        Credit
        ------
        
        - `geojson-area <https://github.com/mapbox/geojson-area>`_
        
Keywords: geojson area geometry
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
