Skip to content

A python tool to download google street view panorama images with given location

License

Notifications You must be signed in to change notification settings

JunlingZhuang/google-street-view-panorama-download

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Street View Panorama Image downloader

A python tool to download google street view panorama images with given location. Modified based on robolyst's work

Function added comparing to original work

  • Faster panorama image retrieve with panoid. Omitting blank blocks and stitching panorama image on the fly.

import streetview
import matplotlib.pyplot as plt

panoids = streetview.panoids(lat=40.75388056, lon=-73.99697222)
panoid = panoids[0]['panoid']
panorama = streetview.download_panorama_v3(panoid, zoom=2, disp=False)
plt.imshow(panorama)

Output:

demo image

About

A python tool to download google street view panorama images with given location

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 92.5%
  • Python 7.5%