Provide a matplotlib like interface to plotting data with Google Maps
Project description
aviplot
======
Plotting data on Google Maps, the easy way. A matplotlib-like
interface to generate the HTML and javascript to render all the
data you'd like on top of Google Maps. Several plotting methods
make creating exploratory map views effortless. Here's a crash course:
::
import aviplot
gmap = aviplot.GoogleMapPlotter(37.428, -122.145, 16)
gmap.plot(latitudes, longitudes, 'cornflowerblue', edge_width=10)
gmap.scatter(more_lats, more_lngs, '#3B0B39', size=40, marker=False)
gmap.scatter(marker_lats, marker_lngs, 'k', marker=True)
gmap.heatmap(heat_lats, heat_lngs)
gmap.draw("mymap.html")
Geocoding
---------
``aviplot`` contains a simple wrapper around Google's geocoding service enabling
map initilization to the location of your choice. Rather than providing latitude,
longitude, and zoom level during initialization, grab your aviplot instance with
a location:
::
gmap = aviplot.from_geocode("San Francisco")
Plot types
----------
* Polygons with fills.
* Drop pins.
* Scatter points.
* Grid lines.
* Heatmaps.
.. image:: http://i.imgur.com/dTNkbZ7.png
Misc.
-----
Code hosted on `GitHub <https://github.com/AvijitGhosh82/aviplot>`_
Install easily with ``pip install aviplot`` from PyPI.
Inspired by Yifei Jiang's (jiangyifei@gmail.com) pygmaps_ module.
.. _pygmaps: http://code.google.com/p/pygmaps/
======
Plotting data on Google Maps, the easy way. A matplotlib-like
interface to generate the HTML and javascript to render all the
data you'd like on top of Google Maps. Several plotting methods
make creating exploratory map views effortless. Here's a crash course:
::
import aviplot
gmap = aviplot.GoogleMapPlotter(37.428, -122.145, 16)
gmap.plot(latitudes, longitudes, 'cornflowerblue', edge_width=10)
gmap.scatter(more_lats, more_lngs, '#3B0B39', size=40, marker=False)
gmap.scatter(marker_lats, marker_lngs, 'k', marker=True)
gmap.heatmap(heat_lats, heat_lngs)
gmap.draw("mymap.html")
Geocoding
---------
``aviplot`` contains a simple wrapper around Google's geocoding service enabling
map initilization to the location of your choice. Rather than providing latitude,
longitude, and zoom level during initialization, grab your aviplot instance with
a location:
::
gmap = aviplot.from_geocode("San Francisco")
Plot types
----------
* Polygons with fills.
* Drop pins.
* Scatter points.
* Grid lines.
* Heatmaps.
.. image:: http://i.imgur.com/dTNkbZ7.png
Misc.
-----
Code hosted on `GitHub <https://github.com/AvijitGhosh82/aviplot>`_
Install easily with ``pip install aviplot`` from PyPI.
Inspired by Yifei Jiang's (jiangyifei@gmail.com) pygmaps_ module.
.. _pygmaps: http://code.google.com/p/pygmaps/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aviplot-1.0.1.tar.gz
(9.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
aviplot-1.0.1-py2-none-any.whl
(17.6 kB
view details)
File details
Details for the file aviplot-1.0.1.tar.gz.
File metadata
- Download URL: aviplot-1.0.1.tar.gz
- Upload date:
- Size: 9.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7be40f6b377d88cd608ec2aaa9b818cee39902552f747e96d9140d8a00e0684
|
|
| MD5 |
a99ac87fa5054cc37df7d35b0267d314
|
|
| BLAKE2b-256 |
eeb85192d74365008b6c93d7722ff8552c537f435a34305e235333510a1b80c6
|
File details
Details for the file aviplot-1.0.1-py2-none-any.whl.
File metadata
- Download URL: aviplot-1.0.1-py2-none-any.whl
- Upload date:
- Size: 17.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f368c79420e55b48621b430fc966a86e99df84a599a4c8b0f2fadcd47fd91d28
|
|
| MD5 |
8a9878f296c699a7898ff1dbcade790e
|
|
| BLAKE2b-256 |
d3c35c3524520ec1ab430bece0007eee9d2bda594ba0e35b436266ec8503bc02
|