Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bash query to follow migration of scihub.copernicus.eu to dataspace.copernicus.eu #57

Merged
merged 4 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion S3_NRT.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ for region in "${regions[@]}"; do

### Fetch one day of OLCI & SLSTR scenes over Greenland
## Use local files (PTEP, DIAS, etc.)
./dhusget_wrapper.sh -d "${date}" -l "${SEN3_local}" -o "${SEN3_source}"/"${year}"/"${date}" \
./dsget_wrapper.sh -d "${date}" -l "${SEN3_local}" -o "${SEN3_source}"/"${year}"/"${date}" \
-f "${region}" -u "${username}" -p "${password}"

# SNAP: Reproject, calculate reflectance, extract bands, etc.
Expand Down
2 changes: 1 addition & 1 deletion S3_proc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ while [[ $# -gt 0 ]]; do
shift
;;
*) # unknown option
positional+=("$1") # save it in an array for later. Pass on to dhusget.sh
positional+=("$1") # save it in an array for later. Pass on to dsget.sh
shift
;;
esac
Expand Down
4 changes: 2 additions & 2 deletions S3_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ for year in 2020; do

### Fetch one day of OLCI & SLSTR scenes over Greenland
## Use local files (PTEP, DIAS, etc.)
./dhusget_wrapper.sh -d "${date}" -l ${SEN3_local} -o ${SEN3_source}/${year}/"${date}" \
./dsget_wrapper.sh -d "${date}" -l ${SEN3_local} -o ${SEN3_source}/${year}/"${date}" \
-f ${area} -u "${username}" -p "${password}" || error=true
## Download files
# ./dhusget_wrapper.sh -d ${date} -o ${SEN3_source}/${year}/${date} \
# ./dsget_wrapper.sh -d ${date} -o ${SEN3_source}/${year}/${date} \
# -f Svalbard -u "${username}" -p "${password}"

# SNAP: Reproject, calculate reflectance, extract bands, etc.
Expand Down
Loading
Loading