scisco / area

Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

geojson-area

image

image

Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python.

Installation

$ pip install area

Usage

Simply pass a geojson string or python dictionary to the area function and get the area.

>>> from area import area
>>> obj = {'type':'Polygon','coordinates':[[[-180,-90],[-180,90],[180,90],[180,-90],[-180,-90]]]}
>>> area(obj)
511207893395811.06

Test

$ python test.py

Credit

About

Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python

License:Other


Languages

Language:Python 100.0%