Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
58c0648
add more small testing data
scottstanie Oct 28, 2022
eb8b2f3
make a failing test for anx crossing
scottstanie Oct 28, 2022
556e44d
create methods for burst/track, fill tests
scottstanie Oct 28, 2022
42df314
fix erroneous burst id in existing test
scottstanie Oct 28, 2022
63859d8
add a sample burst db to compare
scottstanie Oct 29, 2022
2c904d5
add script for remaking the burst sample
scottstanie Oct 29, 2022
af6d4ca
add a geometry check for the esa database
scottstanie Oct 29, 2022
53dc5ea
perform test without pandas
scottstanie Oct 29, 2022
0f86d66
codacy items
scottstanie Oct 29, 2022
2ed1623
add the geometry comparison to the other test cases
scottstanie Oct 29, 2022
cbabae1
add two more test cases
scottstanie Nov 1, 2022
98eb819
refactor tests for new cases
scottstanie Nov 1, 2022
dba751c
redo logic for strange track175 case
scottstanie Nov 1, 2022
2daef08
update burst csv
scottstanie Nov 1, 2022
a1e13c4
fix first test problem, cut bursts
scottstanie Nov 1, 2022
2236cf7
get tests working again for track175 case
scottstanie Nov 1, 2022
7e95f3c
fix esa db csv
scottstanie Nov 1, 2022
2382df4
use nsmap instead of long manual urls
scottstanie Nov 1, 2022
9e1b544
remove testing script
scottstanie Nov 1, 2022
1c1dc57
working version on full orbit cycle
scottstanie Nov 1, 2022
5d19f7d
fix tests to check all subswaths
scottstanie Nov 1, 2022
fcf833d
try recursive include for circleci fail, codacy
scottstanie Nov 1, 2022
110b06c
retry manifest
scottstanie Nov 1, 2022
eae3490
Merge branch 'main' into burst-id-fix
scottstanie Nov 16, 2022
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
Prev Previous commit
Next Next commit
retry manifest
  • Loading branch information
scottstanie committed Nov 1, 2022
commit 110b06c0080fb7f860797297edd576e8753fdd62
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
recursive-include src/s1reader/data/
recursive-include src/s1reader/data/ *
3 changes: 1 addition & 2 deletions src/s1reader/s1_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,7 @@ def get_path_aux_cal(directory_aux_cal: str, str_annotation: str):
list_aux_cal = glob.glob(f'{directory_aux_cal}/{str_platform}_AUX_CAL_V*.SAFE.zip')

if len(list_aux_cal) == 0:
raise ValueError( 'Cannot find AUX_CAL files from directory: '
f'{directory_aux_cal}')
raise ValueError(f'Cannot find AUX_CAL files from {directory_aux_cal} .')

format_datetime = '%Y%m%dT%H%M%S'

Expand Down
1 change: 0 additions & 1 deletion src/s1reader/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@
# latest release version number and date
release_version = release_history[0].version
release_date = release_history[0].date

6 changes: 3 additions & 3 deletions tests/data/make_empty_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
set -e

INDIR=$1
echo $INDIR
echo "$INDIR"

mkdir -p out

SAFENAME=$(basename $INDIR)
SAFENAME=$(basename "$INDIR")

cp -r $INDIR out/
cp -r "$INDIR" out/


NEWSAFE=out/$SAFENAME
Expand Down