Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Delaunator Rs | 164 | 7 | 3 days ago | 7 | March 21, 2023 | 2 | isc | Rust | ||
Fast 2D Delaunay triangulation in Rust. A port of Delaunator. | ||||||||||
Quadtree | 111 | a year ago | 3 | mit | JavaScript | |||||
A QuadTree Example for JavaScript (with p5.js) | ||||||||||
Node S2 | 80 | 8 | 7 | 5 years ago | 16 | November 07, 2016 | 6 | C++ | ||
bindings for s2 in node | ||||||||||
Area | 46 | 8 | 2 | 5 years ago | 4 | October 31, 2018 | 4 | other | Python | |
Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python | ||||||||||
As3geomalgo | 41 | 9 years ago | 1 | other | ActionScript | |||||
AS3 port of hxGeomAlgo - Small collection of geometry algorithms in Haxe 3. | ||||||||||
S2geometry Node | 22 | 7 years ago | 6 | C | ||||||
Get S2 Cell ID Wrapper - Still Work in Progress | ||||||||||
Georepl | 20 | 7 years ago | 2 | Clojure | ||||||
GeoRepl - combine Constructive Geometry with a Clojure Repl | ||||||||||
Aggsdl2android | 7 | 2 years ago | C | |||||||
Anti-Grain Geometry (AGG) port with SDL in Android Studio with cmake | ||||||||||
Evert Cuda | 6 | 8 months ago | 1 | other | Cuda | |||||
A CUDA port of Thurston's evert that path traces a sphere being turned inside out | ||||||||||
Dart S2geometry | 5 | 5 years ago | 1 | August 29, 2018 | apache-2.0 | Dart | ||||
Dart port of the S2 Geometry library |
Calculate the area (in square meters) of a GeoJSON polygon or multipolygon.
import 'package:area/area.dart';
const world = {
'type': 'Polygon',
'coordinates': [
[
[-180, -90],
[-180, 90],
[180, 90],
[180, -90],
[-180, -90]
]
]
};
print(area(world));
Just run:
$ pub run test/area_test.dart