Metadata-Version: 1.1
Name: osm2gmns
Version: 0.2.1
Summary: build network with gmns format using .osm file from openstreetmap
Home-page: https://github.com/jiawei92/OSM2GMNS
Author: Jiawei Lu, Xuesong Zhou
Author-email: jiaweil9@asu.edu, xzhou74@asu.edu
License: GPLv3+
Description: OSM2GMNS
        ========
        
        `OpenStreetMap`_ (OSM) is a free, open-source, editable map website that can provide free
        download. osm2gmns, as a data conversion tool, can directly convert the OSM map data
        to node and link network files in the `GMNS`_ format. Users can convert and model drivable,
        walkable, railway, or aeroway networks with a single line of Python code.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install osm2gmns
        
        
        Simple example
        --------------
        
        Get network from map.osm file and consolidate complex intersections
        
        .. code:: python
        
            >>> import osm2gmns as og
        
            >>> net = og.getNetFromOSMFile('map.osm')
            >>> og.outputNetToCSV(net)
        
        
        Visualization
        -------------
        
        You can visualize generated networks using `NeXTA`_ or `QGis`_.
        
        
        Users' guide
        -------------
        For detailed users' guide, readers can visit the online `documentation`_.
        
        
        .. _`OpenStreetMap`: https://www.openstreetmap.org
        .. _`GMNS`: https://github.com/zephyr-data-specs/GMNS
        .. _`NeXTA`: https://github.com/xzhou99/NeXTA-GMNS
        .. _`QGis`: https://qgis.org
        .. _`documentation`: https://osm2gmns.readthedocs.io
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
