File: PKG-INFO

package info (click to toggle)
gmplot 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 680 kB
  • sloc: python: 502; makefile: 7
file content (67 lines) | stat: -rw-r--r-- 2,131 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Metadata-Version: 1.0
Name: gmplot
Version: 1.2.0
Summary: Provide a matplotlib like interface to plotting data with Google Maps
Home-page: https://github.com/vgm64/gmplot
Author: Michael Woods
Author-email: physicsmichael@gmail.com
License: MIT
Description: gmplot
        ======
        
        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 gmplot
        
            gmap = gmplot.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
        ---------
        
        ``gmplot`` 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 gmplot instance with
        a location:
        
        ::
        
            gmap = gmplot.GoogleMapPlotter.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/vgm64/gmplot>`_
        
        Install easily with ``pip install gmplot`` from PyPI.
        
        Inspired by Yifei Jiang's (jiangyifei@gmail.com) pygmaps_ module.
        
        .. _pygmaps: http://code.google.com/p/pygmaps/
        
        
Keywords: python wrapper google maps
Platform: UNKNOWN