area icon indicating copy to clipboard operation
area copied to clipboard

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

Results 5 area issues
Sort by recently updated
recently updated
newest added

![Screenshot 2020-04-21 at 16 21 12](https://user-images.githubusercontent.com/20488950/79877117-22f19680-83ec-11ea-8c74-663890a75534.png)

It would be sweet if a user could pass objects which implement the `__geo_interface__` protocol into the `area` method. This would allow calculating area of, for example, shapely geometries and...

If passing in geojson that has an outer ring with a clockwise winding order, it return an area of 0. The revised geojson spec says that the outside ring should...

The asserts on lines 30 and 63, i.e. `assert isinstance(coordinates, list)` should also accept tuples, i.e. `assert isinstance(coordinates, (list,tuple))` Since tuples are a valid format on GeoJson and some libraries...