Spaces:
Sleeping
Sleeping
File size: 935 Bytes
1fc9fc6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | # Sentinel-2 Image Browser
This application allows you to browse and view Sentinel-2 satellite imagery from the Copernicus Data Space Ecosystem. You can search by coordinates, select various landscapes, and filter by cloud cover.
## Installation
1. Clone the repository:
```bash
git clone git@github.com:pretty-map/mooc-pretty-map.git
cd mooc-pretty-map
```
2. Create and activate a conda environment:
```bash
conda create -n map python==3.13.2
conda activate map
```
3. Install the required dependencies:
```bash
pip install -r requirements.txt
```
3. Set up your credentials by creating a `.env` file in the root directory with the following content:
```bash
touch .env
```
then:
```
DESTINE_USERNAME=username
DESTINE_PASSWORD=password
ACCESS_KEY_ID=username
SECRET_ACCESS_KEY=password
```
## Running the Application
Start the application with:
```bash
python app_cdse_v0.py
```
or
```bash
python app_cdse_v1.py
``` |