Metadata-Version: 2.1
Name: pysatimage
Version: 0.0.14
Summary: SID: Satellite Imagery Downloader
Author-email: Artur Shevtsov <artorius.ua@gmail.com>
Project-URL: Homepage, https://github.com/artoriusss/sid
Project-URL: Issues, https://github.com/artoriusss/sid/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE
Requires-Dist: requests>=2.32.3
Requires-Dist: numpy>=2.0.0
Requires-Dist: opencv-python>=4.8.0

# SID: Satelite Imagery Downloader

A toolkit for downloading satelite imagery from Google API.

## Installation:

```
pip install pysatimage
```

## Working example:
To utilize the library, import `fetch_image` function and input geographic coordinates like in the following code snippet:

```
from SID import fetch_image

fetch_image(-3.13028, -59.87657)
```

Within the very first run, you'll be asked to configure three parameters:
- Zoom level
- Image resolution (desired image width and height)

If you ever need to change these, you can do so in `.sid/preferences.json`.

After running the code, you can view your image(s) in `satellite_images/`, which will be located in the root of your project.

![example1](images/example1.png)
![example2](images/example2.png)
