Area

Calculate the area inside of any GeoJSON geometry. This is a Dart port of Mapbox's geojson-area.
Alternatives To Area
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Delaunator Rs16473 days ago7March 21, 20232iscRust
Fast 2D Delaunay triangulation in Rust. A port of Delaunator.
Quadtree111
a year ago3mitJavaScript
A QuadTree Example for JavaScript (with p5.js)
Node S280875 years ago16November 07, 20166C++
bindings for s2 in node
Area46825 years ago4October 31, 20184otherPython
Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python
As3geomalgo41
9 years ago1otherActionScript
AS3 port of hxGeomAlgo - Small collection of geometry algorithms in Haxe 3.
S2geometry Node22
7 years ago6C
Get S2 Cell ID Wrapper - Still Work in Progress
Georepl20
7 years ago2Clojure
GeoRepl - combine Constructive Geometry with a Clojure Repl
Aggsdl2android7
2 years agoC
Anti-Grain Geometry (AGG) port with SDL in Android Studio with cmake
Evert Cuda6
8 months ago1otherCuda
A CUDA port of Thurston's evert that path traces a sphere being turned inside out
Dart S2geometry5
5 years ago1August 29, 2018apache-2.0Dart
Dart port of the S2 Geometry library
Alternatives To Area
Select To Compare


Alternative Project Comparisons
Readme

Area

Calculate the area (in square meters) of a GeoJSON polygon or multipolygon.

Usage

import 'package:area/area.dart';

const world = {
  'type': 'Polygon',
  'coordinates': [
    [
      [-180, -90],
      [-180, 90],
      [180, 90],
      [180, -90],
      [-180, -90]
    ]
  ]
};

print(area(world));

Tests

Just run:

$ pub run test/area_test.dart

Credit

Popular Port Projects
Popular Geometry Projects
Popular Networking Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Dart
Port
Geometry
Polygon
Geojson
Meter
Mapbox