Mostafamabrok / satellitescraper

Easy to use python package for scraping high-resolution satellite images from apple maps.🌎
GNU General Public License v3.0
10 stars 0 forks source link

Satellite Scraper 🌎

Easy to use python package for scraping high-resolution satellite images from apple maps.🌎

Credit to @Jimutmap123 for the original code.

Examples:

Kobe Dock

image

Features

How it Works:

Install:

Prerequisites

Instalation Using Pip

pip install satellitescraper

Usage:

After installing the package, you can import it as so:

  from satellitescraper.map_fetch import *

  min_lat_deg = 25.1 
  max_lat_deg = 25.12
  min_lon_deg = 51.2
  max_lon_deg = 51.22
  zoom = 19

  map_fetch(min_lat_deg ,max_lat_deg, min_lon_deg, max_lon_deg, zoom, verbose = False, threads_= 8, container_dir = "myOutputFolder")

To get the coordinate variables:

For more detailed information, visit the documentation.