geojson_area v0.2.1
GeoJSON::Area
Calculate the area inside of any GeoJSON geometry.
Installation
-
Add the dependency to your
shard.yml
:dependencies: geojson_area: github: geocrystal/geojson_area
-
Run
shards install
Usage
require "geojson_area"
This adds area
method for all GeoJSON
objects:
polygon = GeoJSON::Polygon.new([
[[-10.0, -10.0], [10.0, -10.0], [10.0, 10.0], [-10.0,-10.0]],
[[-1.0, -2.0], [3.0, -2.0], [3.0, 2.0], [-1.0,-2.0]]
])
polygon.area
# => 2366726096087.807
Also you can use GeoJSON::Area.area()
directly. This method accept any GeoJSON
object, and returns contained area as square meters.
polygon = GeoJSON::Polygon.new([
[[-10.0, -10.0], [10.0, -10.0], [10.0, 10.0], [-10.0,-10.0]],
[[-1.0, -2.0], [3.0, -2.0], [3.0, 2.0], [-1.0,-2.0]]
])
GeoJSON::Area.area(polygon)
# => 2366726096087.807
Contributing
- Fork it (https://github.com/geocrystal/geojson_area/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Anton Maminov - creator and maintainer
Repository
geojson_area
Owner
Statistic
- 4
- 0
- 0
- 1
- 3
- 6 months ago
- March 29, 2020
License
MIT License
Links
Synced at
Thu, 21 Nov 2024 21:16:38 GMT
Languages