Skip to main content

Calculate the length of a GeoJSON LineString or MultiLineString

Project description

geojson-length

Build Pypi

Calculate the length of a GeoJSON LineString or MultiLineString

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
          ]
        ]
      }
    }

Run test suite

  1. $ pip install pytest
  2. $ poetry run pytest --color=yes --verbose --showlocals tests

You may need to run poetry install first.

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.

License

Free software: MIT license

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.4.0.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

geojson_length-0.4.0-py3-none-any.whl (4.2 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