Skip to main content

convert map data from OpenStreetMap to network files in GMNS format

Project description

osm2gmns

Authors: Jiawei Lu, Xuesong (Simon) Zhou

osm2gmns is an open-source Python package that enables users to conveniently obtain and manipulate any networks from OpenStreetMap (OSM). With a single line of Python code, users can obtain and model drivable, bikeable, walkable, railway, and aeroway networks for any region in the world and output networks to CSV files in GMNS format for seamless data sharing and research collaboration. osm2gmns mainly focuses on providing researchers and practitioners with flexible, standard and ready-to-use multi-modal transportation networks, as well as a bunch of customized and practical functions to facilitate various research and applications on traffic modeling.

Publication

Lu, J., & Zhou, X.S. (2023). Virtual track networks: A hierarchical modeling framework and open-source tools for simplified and efficient connected and automated mobility (CAM) system design based on general modeling network specification (GMNS). Transportation Research Part C: Emerging Technologies, 153, 104223. paper link

Main Features

  • Obtain any networks from OSM. osm2gmns parses map data from OSM and output networks to csv files in GMNS format.

  • Standard network format. osm2gmns adopts GMNS as the network format for seamless data sharing and research collaboration.

  • Ready-to-use network. osm2gmns cleans erroneous information from osm map data and is able to fill up critical missing values, i.e., lanes, speed and capacity, to quickly provide ready-to-use networks.

  • Directed network. two directed road links are generated for each bi-directional osm ways identified by osm2gmns

  • Multi-module support. five different network types are supported, including auto, bike, walk, railway, and aeroway

  • Customized and practical functions to facilitate traffic modeling. functions include complex intersection consolidation, moevement generation, traffic zone creation, short link combination, network visualization.

  • Multi-Resolution modeling. osm2gmns automatically construct the corresponding mesoscopic and microscopic networks for any macroscopic network in GMNS format.

Installation

pip install osm2gmns

If you meet installation issues, please refer to the user’s guide for solutions.

Simple examples

You can find the osm map file used in the examples below at ‘sample networks/Arizona State University, Tempe Campus’

Quickly get the network with point of interest (POI) information from an osm file

>>> import osm2gmns as og
>>> net = og.getNetFromFile('asu.osm', POI=True)
>>> og.outputNetToCSV(net)

Generate multi-resolution networks from an osm file

>>> import osm2gmns as og
>>> net = og.getNetFromFile('asu.osm')
>>> og.consolidateComplexIntersections(net, auto_identify=True)
>>> og.buildMultiResolutionNets(net)
>>> og.outputNetToCSV(net)

Get relation id of a place of interest and download the corresponding osm file

You can use the following code to get the relation id of a place of interest and download the corresponding osm file.

>>> import osm2gmns as og
# get relation id of a place of interest
# For the place of interest, e.g. Arizona State University
# e.g. "Tempe, Arizona, United States"
# e.g. "Arizona, US"
# e.g. "Beijing Jiaotong University, Beijing, China"
>>> rel_id = og.getOSMRelationID('Arizona State University')
>>> rel_id
    Info: Found relation id 3444656 from web
    Info: location of the place of interest:
    {
        "place_id": 318528634,
        "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright",
        "osm_type": "relation",
        "osm_id": 3444656,
        "lat": "33.4213174",
        "lon": "-111.93316305413154",
        "class": "amenity",
        "type": "university",
        "place_rank": 30,
        "importance": 0.5547365758311374,
        "addresstype": "amenity",
        "name": "Arizona State University",
        "display_name": "Arizona State University, 1151, South Forest Avenue, Tempe Junction, Tempe, Maricopa County, Arizona, 85281, United States",
        "boundingbox": [
            "33.4102062",
            "33.4329786",
            "-111.9411651",
            "-111.9092447"
        ]
    }
3444656

# download the corresponding osm file
>>> og.downloadOSMData(rel_id, 'asu.osm')

User’s guide

You can check the user’s guide for a detailed introduction of osm2gmns.

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

osm2gmns-1.0.0b4.tar.gz (16.9 MB view details)

Uploaded Source

Built Distributions

osm2gmns-1.0.0b4-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

osm2gmns-1.0.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

osm2gmns-1.0.0b4-cp312-cp312-macosx_14_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.12 macOS 14.0+ ARM64

osm2gmns-1.0.0b4-cp312-cp312-macosx_13_0_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12 macOS 13.0+ x86-64

osm2gmns-1.0.0b4-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

osm2gmns-1.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

osm2gmns-1.0.0b4-cp311-cp311-macosx_14_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11 macOS 14.0+ ARM64

osm2gmns-1.0.0b4-cp311-cp311-macosx_13_0_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 macOS 13.0+ x86-64

osm2gmns-1.0.0b4-cp310-cp310-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

osm2gmns-1.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

osm2gmns-1.0.0b4-cp310-cp310-macosx_14_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10 macOS 14.0+ ARM64

osm2gmns-1.0.0b4-cp310-cp310-macosx_13_0_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10 macOS 13.0+ x86-64

osm2gmns-1.0.0b4-cp39-cp39-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

osm2gmns-1.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

osm2gmns-1.0.0b4-cp39-cp39-macosx_14_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.9 macOS 14.0+ ARM64

osm2gmns-1.0.0b4-cp39-cp39-macosx_13_0_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9 macOS 13.0+ x86-64

osm2gmns-1.0.0b4-cp38-cp38-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

osm2gmns-1.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

osm2gmns-1.0.0b4-cp38-cp38-macosx_14_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.8 macOS 14.0+ ARM64

osm2gmns-1.0.0b4-cp38-cp38-macosx_13_0_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8 macOS 13.0+ x86-64

File details

Details for the file osm2gmns-1.0.0b4.tar.gz.

File metadata

  • Download URL: osm2gmns-1.0.0b4.tar.gz
  • Upload date:
  • Size: 16.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for osm2gmns-1.0.0b4.tar.gz
Algorithm Hash digest
SHA256 13403a3d40f33b9cdd2a67daee732d7e21cf552185a88e692d8e3ac776590ebb
MD5 a447beddf7c3c59f6fdf70f68ec9e181
BLAKE2b-256 b8227eae1d0acc2bb2e44d38968de09f11e8b1f59937db38795e276eae5276b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4.tar.gz:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3c7314465e56cf2b96d40a9e8155f89e5a3afa06dd5cae0a04b79f0453e2add
MD5 767b47380475551a3780461669cf9ecf
BLAKE2b-256 5fce007f6f72a46870ecec80c428e6b40ea408bf99998713bf7c1fc5e04357ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp312-cp312-win_amd64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe000c24feb0cd783fa7ad1692b9cafad679de83077b88c3797965ba878737e0
MD5 4e75f6278ae5d14adfffa8df5cbe0140
BLAKE2b-256 e263d24b007cbc00afa947caad2e49ec9fc57d3d84bfd6078e5c3633ab6065ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2ff4391839989430cfa684adcf272435af06455d1f58bdd8fe9ad445b00e5f13
MD5 84d6349c38d23a2b1a698456c9f884f5
BLAKE2b-256 6d49be76e823572762cf4744417d4e81de4e266694d6ef8dafa99f3352252ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 59207f67bb501a0801177baf3014c6c22267aed947c504a622fd3a36b9bce1f2
MD5 59dd1f8ac2b4373de30d2a48ae73dac4
BLAKE2b-256 cb44809db0fe549343a6e63da38041f3836a3acb4ce38045f8d529812ac66023

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db1a7941fd697834bc4c1645341b4d2861cb46fb7f9170c03a1628c162a34666
MD5 e4c440102823dbba51561286da8754b7
BLAKE2b-256 12e4bc8a022ce2bacaaad627b70fcb07ebb37aa6915cd55b0d7cdf45abe96992

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp311-cp311-win_amd64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 374c13b14e2fa4dff6d9ed5b3de444aa0f2744250bfdebbc465d156040c636c9
MD5 5d671dc633a860cd3a8b92770d431222
BLAKE2b-256 c6c71c1924e9570c5cdf820554fdfe71c7ff9484d2c950bd218eadbf6c5456c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f67a01a2b467fa483e4c5b21ec2ea948eea6878c5565a045b4aee549f92dcb1b
MD5 01631d4094862a11fe64717fe9029f26
BLAKE2b-256 32e69a01cb685f3bd233883ac8a04c26e35ab30a1dbd639d1888f27c8e0d4947

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 99d3f3d9c0671ccdce12aa56e4658b3032169e7a91070d6f984931516a2de4d5
MD5 254eff31e3b7ff3b023b72e2b0c4ac7c
BLAKE2b-256 02241d83ceb313189faf8db26ba99a2ed2c2b7375b352e191d9e17b9de7c5ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c45305c124fd00d149ea4d13e50f0e859cfe079854bc14bf9d9e91945bf0646
MD5 d6f6479e7800979eab9f07932f9fa0fe
BLAKE2b-256 4c29d9bc468d7d213a0fdeb471edbef8c8b9e51fca2f500aecb2862bfe8890de

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp310-cp310-win_amd64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a91adb24820f1c9a1f6fb1bcc77a0bf8068225454e6043efaf80ad3ccad4e0
MD5 5c2aff308dcc4da74831f44560d932e3
BLAKE2b-256 5f1aa658012860172b011f8f7d8c8f0f8635e6056d334ac722b5466024ef1d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c2b6708b1aac188bd8a746aa67deb8c131eafaf1b7f5456d9d94445a40dc2622
MD5 48cda7d56496bb1ee6213b43cd534609
BLAKE2b-256 cbcb66734c96fb70ebef2daa89bb6fa264ad08788f3e3efab73fe7a24a60f9b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 45ebe8d5d8095a2500b205940036bb2a68d049c302741501f2528649c176e1e5
MD5 55bc1b30bb3d63d34e85374cacce7eff
BLAKE2b-256 72e09893bcb7d9f93f5c182727fb40553183199baa753a15fec4541fd1d62e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c9883a21a49295f7690c0692436019570af2f9f3f371dee8a1b4e0afb5f7db9
MD5 bb0322ab6e8cec7c732d2c447271f254
BLAKE2b-256 a29edab4f36cdba2ca1c323c8333c8bcf70e150080ccfb042354edfee1d89779

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp39-cp39-win_amd64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 017e8fe81b83208afd522f8b6bb2c7b8f40382af99513556ed3c4716685d42ff
MD5 9ad8300f11190b34efa1b064f2fa9ede
BLAKE2b-256 14ad3f099d93a69b2c42229b58f265ac9b5e179b336cce19169bc835d0ded637

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c7a254a1adb7fa27c9ae9341e610dbc269cd6a3d5feba77cf2822be4fc95355f
MD5 9f535c039822cd0b8cae87eb0599b013
BLAKE2b-256 303c3873e906e6302d940f84159e5bedf0b18d4780bf41b8b3885359e519cd14

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8c0ffbef10f384fead6dac63aee51549e3916968d0074f70fdcd9b909d87ba65
MD5 805b85350e10b49b5d8db5205aa2cb26
BLAKE2b-256 59cdc1a6c6f57cf7e9dfb9645708e48cb7387c279fae9a562776293fbb9d8dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6a4b88c799324baf16ab1ff07fd4a9b41d32c2df1283f1a643fc3fd622aef15d
MD5 169f6c6df15d869e392e4c1178fa81a6
BLAKE2b-256 9be49b2fb0ef645fabb23160aaecf459aa074b1683338f217a1c4ae594d302db

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp38-cp38-win_amd64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5337903a84e90b1e07d9ab66d29b1d88ee746291b8941d297ab112a11262cb9
MD5 13ed3a79fdd0147228d378183a9d01a4
BLAKE2b-256 8aa827f947732ecad40ddf11d24e4cfd323cfc58fc29abaeaa9ede694f947250

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7d7814288b89207415261c0f935b0869f2d0ae10dddef336a2752c8ea2331307
MD5 9ea9598ae8a3fd148b16932af7579c7e
BLAKE2b-256 eac544355364e399d6e6916811fe9828d69d62005297c9700ec629dd7ac1c03a

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp38-cp38-macosx_14_0_arm64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

File details

Details for the file osm2gmns-1.0.0b4-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for osm2gmns-1.0.0b4-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2d1efdb3abaf7d6d430489a80566a2cb8ad915d7459f366beae63a86d818b06f
MD5 2e070f4a33798ac25d5c6f8deb52589d
BLAKE2b-256 be7673ab82978a6ce569b042be0c9dc825dc77eb56a81614d9c813c07c6cf498

See more details on using hashes here.

Provenance

The following attestation bundles were made for osm2gmns-1.0.0b4-cp38-cp38-macosx_13_0_x86_64.whl:

Publisher: build-wheels-push.yml on jiawlu/OSM2GMNS

Attestations:

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