Metadata-Version: 1.1
Name: osm-graph
Version: 0.0.3
Summary: `osm-graph` is a package for NetworkX and OpenStreetMap.
Home-page: https://pypi.python.org/pypi/osm-graph
Author: Saito Tsutomu
Author-email: tsutomu.saito@beproud.jp
License: PSFL
Description: `osm-graph` is a package for NetworkX and OpenStreetMap.
        ::
        
           %matplotlib inline
           import networkx as nx
           from osm_graph import OsmGraph
           og = OsmGraph(35.7158, 139.8741)
           nd1 = og.find_node(35.7165, 139.8738)
           nd2 = og.find_node(35.7153, 139.8752)
           path = nx.dijkstra_path(og.graph, nd1, nd2)
           g = nx.subgraph(og.graph, path)
           ax = og.draw_graph()
           og.draw_graph(graph=g, ax=ax, edge_color='r', width=2);
        
        Requirements
        ------------
        * Python 3, networkx, matplotlib, overpy
        
        Features
        --------
        * This is a sample. So it may not be efficient.
        
        Setup
        -----
        ::
        
           $ pip install osm-graph
        
        History
        -------
        0.0.1 (2018-6-9)
        ~~~~~~~~~~~~~~~~~~
        * first release
        
        
Keywords: osm-graph
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
