Skip to main content

Reserve and execute commands on EC2 Spot instance with ease

Project description

https://img.shields.io/pypi/v/geojson-length.svg https://img.shields.io/travis/zaitra/geojson-length.svg

Calculate the length of a GeoJSON LineString or MultiLineString

  • Free software: MIT license

Installation

$ pip3 install geojson-length

Usage

>>> from geojson_length import calculate_distance, Unit
>>> from geojson import Feature, LineString

>>> line = Feature(geometry=LineString([[19.6929931640625,48.953170117120976],[19.5556640625,48.99283383694351]]))
>>> calculate_distance(line, Unit.meters)
10979.098283583924

Note: You need to install python-geojson first or you can define GeoJSON as python dict:

line = {
  "type": "Feature",
  "properties": {},
  "geometry": {
    "type": "LineString",
    "coordinates": [
      [
        19.6929931640625,
        48.953170117120976
      ],
      [
        19.5556640625,
        48.99283383694351
      ]
    ]
  }
}

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

The idea was inspired by geojson-length package written in JS.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geojson-length-0.2.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

geojson_length-0.2.0-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page