Metadata-Version: 1.1
Name: gmaps
Version: 0.1.4
Summary: IPython plugin for Google Maps JavaScript API
Home-page: https://github.com/pbugnion/gmaps
Author: Pascal Bugnion
Author-email: pascal@bugnion.org
License: BSD License
Description: 
        
        gmaps
        =====
        
        gmaps is a plugin for including interactive Google maps in the IPython Notebook.
        
        Let's plot a heatmap (data taken from the `Google maps API documentation <https://developers.google.com/maps/documentation/javascript/heatmaplayer>`_):
        
        .. code:: python
        
            In [1]: import gmaps
        
            In [2]: data = [ [ 37.782, -122.447 ], # [ latitude, longitude ] pairs
                             [ 37.782, -122.445 ],
                             [ 37.782, -122.443 ],
                             [ 37.782, -122.441 ],
                             [ 37.782, -122.439 ],
                             [ 37.782, -122.437 ] ]
                    map = gmaps.heatmap(data)
                    gmaps.display(map)
        
        Installation
        ------------
        
        gmaps can only be installed from source. Clone the git repository by running::
        
            $ git clone https://github.com/pbugnion/gmaps.git
        
        Change to the project's root directory and run::
        
            $ python setup.py install
        
        Getting started
        ---------------
        
        Currently, only heatmaps are supported. Draw a heatmap by passing a list of (latitude, longitude)
        pairs to the heatmap command.
        
        There are example notebooks in the examples directory. The heatmap example is
        also visible `on nbviewer
        <http://nbviewer.ipython.org/github/pbugnion/gmaps/blob/master/examples/ipy3/heatmap_demo.ipynb>`_,
        but note that you need to download the notebook to actually see the Google Map.
        
        Issue reporting and contributing
        --------------------------------
        
        Report issues using the `github issue tracker <https://github.com/pbugnion/gmaps/issues>`_.
        
        Contributions are welcome. Read the CONTRIBUTING guide to learn how to contribute.
        
Platform: Linux
Platform: Mac OS
Platform: Windows
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Framework :: IPython
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: JavaScript
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Visualization
