Metadata-Version: 1.2
Name: osm2gmns
Version: 0.6.3
Summary: convert map data from OpenStreetMap to network files in GMNS format
Home-page: https://github.com/jiawlu/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 `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
        
        If you meet installation issues, please refer to the `user guide`_ for solutions.
        
        
        Simple example
        --------------
        
        Get network from osm file and conduct intersection consolidation
        
        .. code:: python
        
            >>> import osm2gmns as og
        
            >>> net = og.getNetFromOSMFile('map.osm')
            >>> # for large networks, getNetFromPBFFile() is recommended
            >>> og.outputNetToCSV(net)
        
        
        Visualization
        -------------
        
        You can visualize generated networks using `NeXTA`_ or `QGis`_.
        
        
        User guide
        -------------
        Users can check the `user guide`_ for a detailed introduction of osm2gmns.
        
        
        .. _`OpenStreetMap`: https://www.openstreetmap.org
        .. _`GMNS`: https://github.com/zephyr-data-specs/GMNS
        .. _`NeXTA`: https://github.com/xzhou99/NeXTA-GMNS
        .. _`QGis`: https://qgis.org
        .. _`user guide`: https://osm2gmns.readthedocs.io
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6.0
