Skip to main content

Download panoramas and metadata from Street View and others

Project description

streetlevel

streetlevel is a library for downloading panoramas and metadata from street-level imagery services including Google Street View, Apple Look Around, and several others.

Since it relies on calls to internal APIs, it may break unexpectedly.

(Nearly) all functions are available as both a sync function using requests or an async function using aiohttp, requiring a ClientSession.

Installation

pip install streetlevel

Example

Downloading the closest Google Street View panorama to a specific location, sync:

from streetlevel import streetview

pano = streetview.find_panorama(46.883958, 12.169002)
streetview.download_panorama(pano, f"{pano.id}.jpg")

Or async:

from streetlevel import streetview
from aiohttp import ClientSession

session = ClientSession()
pano = await streetview.find_panorama_async(46.883958, 12.169002, session)
await streetview.download_panorama_async(pano, f"{pano.id}.jpg", session)
await session.close()

Documentation

Documentation is available at streetlevel.readthedocs.io.

Functionality overview

✔ implemented / available; 🟡 partially implemented; ❌ not implemented; ⚫ not available / not applicable

Google Street View Apple Look Around Yandex Panorama Bing Streetside Kakao Road View Naver Street View Mapy.cz Panorama

Finding panoramas
How panoramas can be retrieved through the API.
Find panoramas around a point 1 1 1 1
Find panoramas by slippy map tile or bounding box 2 2 3
Get specific panorama by ID

Imagery
The type of imagery returned by the service.
Download panoramas 4
Download depth information 5 5
Image projection Equirectangular ??? Equirectangular Cubemap Equirectangular Cubemap Equirectangular
Image format JPEG HEIC JPEG JPEG JPEG JPEG JPEG

Available metadata
Metadata returned by the API of the service alongside ID and location.
Capture date 6
Heading, pitch, roll 🟡7 8 8 8
Elevation
Nearby / linked panoramas 9
Historical panoramas
Address 10
Creator

1: Returns closest only
2: Tile, z=17
3: Bounding box
4: Unstitched
5: Appears to be a synthetic depth map created from elevation data and building footprints 6: Month and year only for official coverage, full date for inofficial coverage
7: Only heading is implemented; inaccurate in some locations
8: Only heading; pitch/roll do not appear to be available
9: Previous and next image in sequence
10: Street name only

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streetlevel-0.5.2.tar.gz (51.0 kB view hashes)

Uploaded Source

Built Distribution

streetlevel-0.5.2-py3-none-any.whl (53.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page