Spaces:
Sleeping
Sleeping
File size: 1,069 Bytes
77e3f0a a4a4c9b d6c9b8f 29f7048 d6c9b8f | 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 54 55 56 57 58 59 60 61 62 63 64 | ---
license: mit
title: MapsterSpace
sdk: gradio
emoji: 🌍
colorFrom: blue
colorTo: green
app_file: app.py
sdk_version: 5.24.0
---
# 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
``` |