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
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
Built Distribution
Hashes for streetlevel-0.5.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee77190329d3d89fdb8709db25dcddf5852c97ebcb1576843ea88930864560e8 |
|
MD5 | bd063efa30a8d933a7c095f6d0db43fb |
|
BLAKE2b-256 | 9775e272eab988eaff7b6272c4c3c4aaf97e2eb30f8e28a7ebe6bc2e06e5d898 |