geoarea

Calculate the area from latitude longitude coordinates list


License
BSD-2-Clause
Install
pip install geoarea==0.1.3

Documentation

geoarea

travis

This is a fork from geojson-area (python). Calculate the area from lists of latitude and longitude coordinates.

Installation

  $ pip install geoarea

Usage

Simply pass a list of latitude and longitude

>>> from geoarea import area
>>> latitude_world = [-90, 90, 90, -90, -90]
>>> longitude_world = [-180, -180, 180, 180, -180]  
>>> area(latitude_world, longitude_world)
511207893395811.06

Test

  $ python test.py

Credit

References