https://github.com/jacobwhall/mine-footprint-detection
https://github.com/jacobwhall/mine-footprint-detection
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacobwhall/mine-footprint-detection
- Owner: jacobwhall
- License: bsd-3-clause
- Created: 2023-08-16T20:26:34.000Z (over 1 year ago)
- Default Branch: trunk
- Last Pushed: 2023-08-16T20:48:19.000Z (over 1 year ago)
- Last Synced: 2025-04-06T04:13:58.675Z (27 days ago)
- Language: Python
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Mining Footprints CNN
## A note on imagery sources
This project currently uses PlanetScope imagery, which requires a license from Planet to download.
I originally wanted to use Sentinel-2 imagery for this project, but the ESA was in the middle of a infrastructure migration and didn't want to write code to download from an API that was going to be phased out.
I'd love to build Sentinel-2 into this project though, if you could help out with that reach out!For now, to use this project you'll need to save your Planet API key to `.planet_key.txt` in this directory.
## Getting started
1. Update `config.toml`
- Set your project path!
- Limit which countries you want to search2. Download mine footprints
```sh
python src/download_footprints.py
```3. Extract mine footprints
```sh
python src/extract_footprints.py
```4. Search Planet for imagery
```sh
python src/planet_search.py
```5. Download imagery from planet
```sh
python src/planet_download.py
```...