https://github.com/spaceparkleicester/sentinel_sar
This repository consists of my modules related to Sentinel-1 data download
https://github.com/spaceparkleicester/sentinel_sar
sar satellite-data sentinel-1
Last synced: 8 months ago
JSON representation
This repository consists of my modules related to Sentinel-1 data download
- Host: GitHub
- URL: https://github.com/spaceparkleicester/sentinel_sar
- Owner: SpaceParkLeicester
- License: apache-2.0
- Created: 2023-03-08T14:22:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T04:42:57.000Z (about 2 years ago)
- Last Synced: 2024-12-17T23:12:33.965Z (11 months ago)
- Topics: sar, satellite-data, sentinel-1
- Language: Python
- Homepage:
- Size: 35.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sentinel-1 data download
## Initialisation steps and Pytest Commands
* Install all requirements in a virtual environment with `conda create -f environment.yml`.
* Run `pip install -e -v .`
* This will make the project editable to be able to develop and run tests.
* To test the functions, datapipe lines, etc. using `pytest` package
* Run `pytest -rA -s tests/run/test_data_download.py`
* If not added, add project folder path to `sys.path` in order to use the relative paths while developing and testing
```
import sys
sys.path.append(path/to/Sentinel-SAR)
```
## Organisation
This repository consists of modules required to download, pre-process the Sentinel-SAR data. The structure of the repository is shown below.
```
.
├── data
│ └── search_results
│ └── flotta
├── installs
├── src
│ ├── data
│ │ ├── asf_data
│ │ └── scihub
│ ├── jobs
│ │ └── sar_data
│ └── utils
└── tests
├── data
└── utils
```
## Usage
The datapipe line that needs to be followed is below.
```
data_search(src/data/asf_or_sci/search)---->data_download(src/data/asf_or_sci/download)----->unzip
```