forked from OSOceanAcoustics/echopype
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rewrote shoal mask to use dask Merge/ariza (#130) Initial implementation of the seabed masking.
- Loading branch information
1 parent
3534890
commit 255591a
Showing
18 changed files
with
1,097 additions
and
619 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ on: | |
|
||
env: | ||
NUM_WORKERS: 2 | ||
TEST_DATA_FOLDER: ${{ github.workspace }}/test_data | ||
|
||
jobs: | ||
test: | ||
|
@@ -62,6 +63,11 @@ jobs: | |
# Check data endpoint | ||
curl http://localhost:8080/data/ | ||
# Add the following steps for downloading and unzipping test data | ||
- name: Download Test Data from Google Drive | ||
run: | | ||
wget --load-cookies /tmp/cookies.txt "https://drive.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://drive.google.com/uc?export=download&id=1ofiSQ4zDwXfHE65tow4_jDIceBYHNW_8' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1ofiSQ4zDwXfHE65tow4_jDIceBYHNW_8" -O test_data.zip && rm -rf /tmp/cookies.txt | ||
unzip -n test_data.zip -d ${{ env.TEST_DATA_FOLDER }} | ||
- name: Finding changed files | ||
id: files | ||
uses: Ana06/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from .api import apply_mask, frequency_differencing, get_seabed_mask, get_shoal_mask | ||
|
||
__all__ = ["frequency_differencing", "apply_mask", "get_seabed_mask", "get_shoal_mask"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.