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

LDAS download using Earthaccess #16

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
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
Binary file added .DS_Store
Binary file not shown.
3 changes: 2 additions & 1 deletion .github/workflows/github_actions_CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#The purpose of this file is to give instructions to GitHub on how to do the
#image deployment to Docker Hub.
#Author:
#Cedric H. David, 2022-2023.
#Cedric H. David, 2022-2024.


#*******************************************************************************
Expand Down Expand Up @@ -84,6 +84,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The beauty of Docker is that there is **no need to install anymore packages**.
RRR is ready to go! To run it, just use:

```
$ docker run --rm -it chdavid/rrr
$ docker run --rm -e EARTHDATA_USERNAME="yourUsername" -e EARTHDATA_PASSWORD="yourPassword" -it chdavid/rrr
```

## Testing with Docker
Expand Down
Binary file added drv/.DS_Store
Binary file not shown.
645 changes: 333 additions & 312 deletions drv/rrr_drv_MERIT_Hydro_v07_Basins_v01_GLDAS_v20.py
100755 → 100644

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions requirements.apt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ ffmpeg
#multimedia file transcoding
nco
#netCDF operators
cdo
#climate data operators (for NLDAS GRIB to netCDF conversion)

#-------------------------------------------------------------------------------
#Code testing
Expand Down
1 change: 1 addition & 0 deletions requirements.pip
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ requests==2.28.1
Rtree==1.0.0
scipy==1.7.3
Shapely==1.8.2
earthaccess==0.9.0


#*******************************************************************************
Expand Down
Loading