{"id":13569554,"url":"https://github.com/jazzband/geojson","last_synced_at":"2025-12-12T01:05:37.794Z","repository":{"id":1563535,"uuid":"1985351","full_name":"jazzband/geojson","owner":"jazzband","description":"Python bindings and utilities for GeoJSON","archived":false,"fork":false,"pushed_at":"2024-04-01T17:38:38.000Z","size":388,"stargazers_count":887,"open_issues_count":27,"forks_count":120,"subscribers_count":31,"default_branch":"main","last_synced_at":"2024-05-20T01:16:19.988Z","etag":null,"topics":["geojson","python"],"latest_commit_sha":null,"homepage":"https://pypi.python.org/pypi/geojson/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jazzband.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE.rst","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":["https://jazzband.co/donate"]}},"created_at":"2011-07-01T20:39:48.000Z","updated_at":"2024-06-18T11:22:25.518Z","dependencies_parsed_at":"2023-12-21T13:30:42.255Z","dependency_job_id":"d2fa9e49-bed4-45ca-b5f1-70fcb5472747","html_url":"https://github.com/jazzband/geojson","commit_stats":{"total_commits":418,"total_committers":53,"mean_commits":7.886792452830188,"dds":0.5574162679425838,"last_synced_commit":"c470a1f867579a39d25db2954aa8e909e79f3848"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/jazzband/geojson","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jazzband%2Fgeojson","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jazzband%2Fgeojson/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jazzband%2Fgeojson/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jazzband%2Fgeojson/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jazzband","download_url":"https://codeload.github.com/jazzband/geojson/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jazzband%2Fgeojson/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261320438,"owners_count":23140940,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["geojson","python"],"created_at":"2024-08-01T14:00:41.356Z","updated_at":"2025-12-12T01:05:37.749Z","avatar_url":"https://github.com/jazzband.png","language":"Python","funding_links":["https://jazzband.co/donate"],"categories":["地理位置","地理Geo处理","Geolocation","Python","Uncategorized"],"sub_categories":["Drone Frames","Uncategorized"],"readme":"geojson\n==============\n\n.. image:: https://github.com/jazzband/geojson/actions/workflows/test.yml/badge.svg\n   :target: https://github.com/jazzband/geojson/actions/workflows/test.yml\n   :alt: GitHub Actions\n.. image:: https://img.shields.io/codecov/c/github/jazzband/geojson.svg\n   :target: https://codecov.io/github/jazzband/geojson?branch=main\n   :alt: Codecov\n.. image:: https://jazzband.co/static/img/badge.svg\n   :target: https://jazzband.co/\n   :alt: Jazzband\n.. image:: https://img.shields.io/pypi/dm/geojson.svg\n   :target: https://pypi.org/project/geojson/\n   :alt: PyPI\n\nThis Python library contains:\n\n- Functions for encoding and decoding GeoJSON_ formatted data\n- Classes for all GeoJSON Objects\n- An implementation of the Python `__geo_interface__ Specification`_\n\n**Table of Contents**\n\n.. contents::\n   :backlinks: none\n   :local:\n\nInstallation\n------------\n\ngeojson is compatible with Python 3.7 - 3.13. The recommended way to install is via pip_:\n\n.. code::\n\n  pip install geojson\n\n.. _PyPi as 'geojson': https://pypi.python.org/pypi/geojson/\n.. _pip: https://www.pip-installer.org\n\nGeoJSON Objects\n---------------\n\nThis library implements all the `GeoJSON Objects`_ described in `The GeoJSON Format Specification`_.\n\n.. _GeoJSON Objects: https://tools.ietf.org/html/rfc7946#section-3\n\nAll object keys can also be used as attributes.\n\nThe objects contained in GeometryCollection and FeatureCollection can be indexed directly.\n\nPoint\n~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import Point\n\n  \u003e\u003e\u003e Point((-115.81, 37.24))  # doctest: +ELLIPSIS\n  {\"coordinates\": [-115.8..., 37.2...], \"type\": \"Point\"}\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/b5768a857f5598e405fa\u003e`__. General information about Point can be found in `Section 3.1.2`_ and `Appendix A: Points`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.2: https://tools.ietf.org/html/rfc7946#section-3.1.2\n.. _Appendix A\\: Points: https://tools.ietf.org/html/rfc7946#appendix-A.1\n\nMultiPoint\n~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import MultiPoint\n\n  \u003e\u003e\u003e MultiPoint([(-155.52, 19.61), (-156.22, 20.74), (-157.97, 21.46)])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[-155.5..., 19.6...], [-156.2..., 20.7...], [-157.9..., 21.4...]], \"type\": \"MultiPoint\"}\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/be02025c1eb3aa2040ee\u003e`__. General information about MultiPoint can be found in `Section 3.1.3`_ and `Appendix A: MultiPoints`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.3: https://tools.ietf.org/html/rfc7946#section-3.1.3\n.. _Appendix A\\: MultiPoints: https://tools.ietf.org/html/rfc7946#appendix-A.4\n\n\nLineString\n~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import LineString\n\n  \u003e\u003e\u003e LineString([(8.919, 44.4074), (8.923, 44.4075)])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[8.91..., 44.407...], [8.92..., 44.407...]], \"type\": \"LineString\"}\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/758563182ca49ce8e8bb\u003e`__. General information about LineString can be found in `Section 3.1.4`_ and `Appendix A: LineStrings`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.4: https://tools.ietf.org/html/rfc7946#section-3.1.4\n.. _Appendix A\\: LineStrings: https://tools.ietf.org/html/rfc7946#appendix-A.2\n\nMultiLineString\n~~~~~~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import MultiLineString\n\n  \u003e\u003e\u003e MultiLineString([\n  ...     [(3.75, 9.25), (-130.95, 1.52)],\n  ...     [(23.15, -34.25), (-1.35, -4.65), (3.45, 77.95)]\n  ... ])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[[3.7..., 9.2...], [-130.9..., 1.52...]], [[23.1..., -34.2...], [-1.3..., -4.6...], [3.4..., 77.9...]]], \"type\": \"MultiLineString\"}\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/20b6522d8242ede00bb3\u003e`__. General information about MultiLineString can be found in `Section 3.1.5`_ and `Appendix A: MultiLineStrings`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.5: https://tools.ietf.org/html/rfc7946#section-3.1.5\n.. _Appendix A\\: MultiLineStrings: https://tools.ietf.org/html/rfc7946#appendix-A.5\n\nPolygon\n~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import Polygon\n\n  \u003e\u003e\u003e # no hole within polygon\n  \u003e\u003e\u003e Polygon([[(2.38, 57.322), (-120.43, 19.15), (23.194, -20.28), (2.38, 57.322)]])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[[2.3..., 57.32...], [-120.4..., 19.1...], [23.19..., -20.2...]]], \"type\": \"Polygon\"}\n\n  \u003e\u003e\u003e # hole within polygon\n  \u003e\u003e\u003e Polygon([\n  ...     [(2.38, 57.322), (-120.43, 19.15), (23.194, -20.28), (2.38, 57.322)],\n  ...     [(-5.21, 23.51), (15.21, -10.81), (-20.51, 1.51), (-5.21, 23.51)]\n  ... ])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[[2.3..., 57.32...], [-120.4..., 19.1...], [23.19..., -20.2...]], [[-5.2..., 23.5...], [15.2..., -10.8...], [-20.5..., 1.5...], [-5.2..., 23.5...]]], \"type\": \"Polygon\"}\n\nVisualize the results of the example above `here \u003chttps://gist.github.com/frewsxcv/b2f5c31c10e399a63679\u003e`__. General information about Polygon can be found in `Section 3.1.6`_ and `Appendix A: Polygons`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.6: https://tools.ietf.org/html/rfc7946#section-3.1.6\n.. _Appendix A\\: Polygons: https://tools.ietf.org/html/rfc7946#appendix-A.3\n\nMultiPolygon\n~~~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import MultiPolygon\n\n  \u003e\u003e\u003e MultiPolygon([\n  ...     ([(3.78, 9.28), (-130.91, 1.52), (35.12, 72.234), (3.78, 9.28)],),\n  ...     ([(23.18, -34.29), (-1.31, -4.61), (3.41, 77.91), (23.18, -34.29)],)\n  ... ])  # doctest: +ELLIPSIS\n  {\"coordinates\": [[[[3.7..., 9.2...], [-130.9..., 1.5...], [35.1..., 72.23...]]], [[[23.1..., -34.2...], [-1.3..., -4.6...], [3.4..., 77.9...]]]], \"type\": \"MultiPolygon\"}\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/e0388485e28392870b74\u003e`__. General information about MultiPolygon can be found in `Section 3.1.7`_ and `Appendix A: MultiPolygons`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.7: https://tools.ietf.org/html/rfc7946#section-3.1.7\n.. _Appendix A\\: MultiPolygons: https://tools.ietf.org/html/rfc7946#appendix-A.6\n\nGeometryCollection\n~~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import GeometryCollection, Point, LineString\n\n  \u003e\u003e\u003e my_point = Point((23.532, -63.12))\n\n  \u003e\u003e\u003e my_line = LineString([(-152.62, 51.21), (5.21, 10.69)])\n\n  \u003e\u003e\u003e geo_collection = GeometryCollection([my_point, my_line])\n\n  \u003e\u003e\u003e geo_collection  # doctest: +ELLIPSIS\n  {\"geometries\": [{\"coordinates\": [23.53..., -63.1...], \"type\": \"Point\"}, {\"coordinates\": [[-152.6..., 51.2...], [5.2..., 10.6...]], \"type\": \"LineString\"}], \"type\": \"GeometryCollection\"}\n\n  \u003e\u003e\u003e geo_collection[1]\n  {\"coordinates\": [[-152.62, 51.21], [5.21, 10.69]], \"type\": \"LineString\"}\n\n  \u003e\u003e\u003e geo_collection[0] == geo_collection.geometries[0]\n  True\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/6ec8422e97d338a101b0\u003e`__. General information about GeometryCollection can be found in `Section 3.1.8`_ and `Appendix A: GeometryCollections`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.1.8: https://tools.ietf.org/html/rfc7946#section-3.1.8\n.. _Appendix A\\: GeometryCollections: https://tools.ietf.org/html/rfc7946#appendix-A.7\n\nFeature\n~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import Feature, Point\n\n  \u003e\u003e\u003e my_point = Point((-3.68, 40.41))\n\n  \u003e\u003e\u003e Feature(geometry=my_point)  # doctest: +ELLIPSIS\n  {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}\n\n  \u003e\u003e\u003e Feature(geometry=my_point, properties={\"country\": \"Spain\"})  # doctest: +ELLIPSIS\n  {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"properties\": {\"country\": \"Spain\"}, \"type\": \"Feature\"}\n\n  \u003e\u003e\u003e Feature(geometry=my_point, id=27)  # doctest: +ELLIPSIS\n  {\"geometry\": {\"coordinates\": [-3.68..., 40.4...], \"type\": \"Point\"}, \"id\": 27, \"properties\": {}, \"type\": \"Feature\"}\n\nVisualize the results of the examples above `here \u003chttps://gist.github.com/frewsxcv/4488d30209d22685c075\u003e`__. General information about Feature can be found in `Section 3.2`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.2: https://tools.ietf.org/html/rfc7946#section-3.2\n\nFeatureCollection\n~~~~~~~~~~~~~~~~~\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import Feature, Point, FeatureCollection\n\n  \u003e\u003e\u003e my_feature = Feature(geometry=Point((1.6432, -19.123)))\n\n  \u003e\u003e\u003e my_other_feature = Feature(geometry=Point((-80.234, -22.532)))\n\n  \u003e\u003e\u003e feature_collection = FeatureCollection([my_feature, my_other_feature])\n\n  \u003e\u003e\u003e feature_collection # doctest: +ELLIPSIS\n  {\"features\": [{\"geometry\": {\"coordinates\": [1.643..., -19.12...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}, {\"geometry\": {\"coordinates\": [-80.23..., -22.53...], \"type\": \"Point\"}, \"properties\": {}, \"type\": \"Feature\"}], \"type\": \"FeatureCollection\"}\n\n  \u003e\u003e\u003e feature_collection.errors()\n  []\n\n  \u003e\u003e\u003e (feature_collection[0] == feature_collection['features'][0], feature_collection[1] == my_other_feature)\n  (True, True)\n\nVisualize the result of the example above `here \u003chttps://gist.github.com/frewsxcv/34513be6fb492771ef7b\u003e`__. General information about FeatureCollection can be found in `Section 3.3`_ within `The GeoJSON Format Specification`_.\n\n.. _Section 3.3: https://tools.ietf.org/html/rfc7946#section-3.3\n\nGeoJSON encoding/decoding\n-------------------------\n\nAll of the GeoJSON Objects implemented in this library can be encoded and decoded into raw GeoJSON with the ``geojson.dump``, ``geojson.dumps``, ``geojson.load``, and ``geojson.loads`` functions. Note that each of these functions is a wrapper around the core `json` function with the same name, and will pass through any additional arguments. This allows you to control the JSON formatting or parsing behavior with the underlying core `json` functions.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e my_point = geojson.Point((43.24, -1.532))\n\n  \u003e\u003e\u003e my_point  # doctest: +ELLIPSIS\n  {\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}\n\n  \u003e\u003e\u003e dump = geojson.dumps(my_point, sort_keys=True)\n\n  \u003e\u003e\u003e dump  # doctest: +ELLIPSIS\n  '{\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}'\n\n  \u003e\u003e\u003e geojson.loads(dump)  # doctest: +ELLIPSIS\n  {\"coordinates\": [43.2..., -1.53...], \"type\": \"Point\"}\n\nCustom classes\n~~~~~~~~~~~~~~\n\nThis encoding/decoding functionality shown in the previous can be extended to custom classes using the interface described by the `__geo_interface__ Specification`_.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e class MyPoint():\n  ...     def __init__(self, x, y):\n  ...         self.x = x\n  ...         self.y = y\n  ...\n  ...     @property\n  ...     def __geo_interface__(self):\n  ...         return {'type': 'Point', 'coordinates': (self.x, self.y)}\n\n  \u003e\u003e\u003e point_instance = MyPoint(52.235, -19.234)\n\n  \u003e\u003e\u003e geojson.dumps(point_instance, sort_keys=True)  # doctest: +ELLIPSIS\n  '{\"coordinates\": [52.23..., -19.23...], \"type\": \"Point\"}'\n\nDefault and custom precision\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nGeoJSON Object-based classes in this package have an additional `precision` attribute which rounds off\ncoordinates to 6 decimal places (roughly 0.1 meters) by default and can be customized per object instance.\n\n.. code:: python\n\n  \u003e\u003e\u003e from geojson import Point\n\n  \u003e\u003e\u003e Point((-115.123412341234, 37.123412341234))  # rounded to 6 decimal places by default\n  {\"coordinates\": [-115.123412, 37.123412], \"type\": \"Point\"}\n\n  \u003e\u003e\u003e Point((-115.12341234, 37.12341234), precision=8)  # rounded to 8 decimal places\n  {\"coordinates\": [-115.12341234, 37.12341234], \"type\": \"Point\"}\n\n\nPrecision can be set at the package level by setting `geojson.geometry.DEFAULT_PRECISION`\n\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e geojson.geometry.DEFAULT_PRECISION = 5\n\n  \u003e\u003e\u003e from geojson import Point\n\n  \u003e\u003e\u003e Point((-115.12341234, 37.12341234))  # rounded to 8 decimal places\n  {\"coordinates\": [-115.12341, 37.12341], \"type\": \"Point\"}\n\n\nAfter setting the DEFAULT_PRECISION, coordinates will be rounded off to that precision with `geojson.load` or `geojson.loads`. Following one of those with `geojson.dump` is a quick and easy way to scale down the precision of excessively precise, arbitrarily-sized GeoJSON data.\n\n\nHelpful utilities\n-----------------\n\ncoords\n~~~~~~\n\n:code:`geojson.utils.coords` yields all coordinate tuples from a geometry or feature object.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e my_line = LineString([(-152.62, 51.21), (5.21, 10.69)])\n\n  \u003e\u003e\u003e my_feature = geojson.Feature(geometry=my_line)\n\n  \u003e\u003e\u003e list(geojson.utils.coords(my_feature))  # doctest: +ELLIPSIS\n  [(-152.62..., 51.21...), (5.21..., 10.69...)]\n\nmap_coords\n~~~~~~~~~~\n\n:code:`geojson.utils.map_coords` maps a function over all coordinate values and returns a geometry of the same type. Useful for scaling a geometry.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e new_point = geojson.utils.map_coords(lambda x: x/2, geojson.Point((-115.81, 37.24)))\n\n  \u003e\u003e\u003e geojson.dumps(new_point, sort_keys=True)  # doctest: +ELLIPSIS\n  '{\"coordinates\": [-57.905..., 18.62...], \"type\": \"Point\"}'\n\nmap_tuples\n~~~~~~~~~~\n\n:code:`geojson.utils.map_tuples` maps a function over all coordinates and returns a geometry of the same type. Useful for changing coordinate order or applying coordinate transforms.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e new_point = geojson.utils.map_tuples(lambda c: (c[1], c[0]), geojson.Point((-115.81, 37.24)))\n\n  \u003e\u003e\u003e geojson.dumps(new_point, sort_keys=True)  # doctest: +ELLIPSIS\n  '{\"coordinates\": [37.24..., -115.81], \"type\": \"Point\"}'\n\nmap_geometries\n~~~~~~~~~~~~~~\n\n:code:`geojson.utils.map_geometries` maps a function over each geometry in the input.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e new_point = geojson.utils.map_geometries(lambda g: geojson.MultiPoint([g[\"coordinates\"]]), geojson.GeometryCollection([geojson.Point((-115.81, 37.24))]))\n\n  \u003e\u003e\u003e geojson.dumps(new_point, sort_keys=True)\n  '{\"geometries\": [{\"coordinates\": [[-115.81, 37.24]], \"type\": \"MultiPoint\"}], \"type\": \"GeometryCollection\"}'\n\nvalidation\n~~~~~~~~~~\n\n:code:`is_valid` property provides simple validation of GeoJSON objects.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e obj = geojson.Point((-3.68,40.41,25.14,10.34))\n  \u003e\u003e\u003e obj.is_valid\n  False\n\n:code:`errors` method provides collection of errors when validation GeoJSON objects.\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e obj = geojson.Point((-3.68,40.41,25.14,10.34))\n  \u003e\u003e\u003e obj.errors()\n  'a position must have exactly 2 or 3 values'\n\ngenerate_random\n~~~~~~~~~~~~~~~\n\n:code:`geojson.utils.generate_random` yields a geometry type with random data\n\n.. code:: python\n\n  \u003e\u003e\u003e import geojson\n\n  \u003e\u003e\u003e geojson.utils.generate_random(\"LineString\")  # doctest: +ELLIPSIS\n  {\"coordinates\": [...], \"type\": \"LineString\"}\n\n  \u003e\u003e\u003e geojson.utils.generate_random(\"Polygon\")  # doctest: +ELLIPSIS\n  {\"coordinates\": [...], \"type\": \"Polygon\"}\n\n\nDevelopment\n-----------\n\nTo build this project, run :code:`python setup.py build`.\nTo run the unit tests, run :code:`python -m pip install tox \u0026\u0026 tox`.\nTo run the style checks, run :code:`flake8` (install `flake8` if needed).\n\nCredits\n-------\n\n* Sean Gillies \u003csgillies@frii.com\u003e\n* Matthew Russell \u003cmatt@sanoodi.com\u003e\n* Corey Farwell \u003ccoreyf@rwell.org\u003e\n* Blake Grotewold \u003chello@grotewold.me\u003e\n* Zsolt Ero \u003czsolt.ero@gmail.com\u003e\n* Sergey Romanov \u003cxxsmotur@gmail.com\u003e\n* Ray Riga \u003cray@strongoutput.com\u003e\n\n\n.. _GeoJSON: https://geojson.org/\n.. _The GeoJSON Format Specification: https://tools.ietf.org/html/rfc7946\n.. _\\_\\_geo\\_interface\\_\\_ Specification: https://gist.github.com/sgillies/2217756\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjazzband%2Fgeojson","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjazzband%2Fgeojson","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjazzband%2Fgeojson/lists"}