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

Skip to content

Navigation Menu

Sign in

Appearance settings

geojson-area

https://travis-ci.org/scisco/area.svg?branch=master

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

Resources

Readme

License

View license

Activity

Stars

98 stars

Watchers

2 watching

Forks

20 forks