From 00994bb90ed91def0b389f7ebac913de1855512b Mon Sep 17 00:00:00 2001 From: Guoqing Ge Date: Thu, 24 Oct 2024 05:59:31 +0900 Subject: [PATCH] link fix_REL-3.1.1.2/fix to avoid super long downloading time (#197) CRTMv3 code changed the behavior on how to find the local coefficient fix files. It requires an existing `fix/` under the bundle directory. Otherwise it will automatically start a downloading process to fetch a tarball file from `https://bin.ssec.wisc.edu/pub/s4/CRTM//fix_REL-3.1.1.2.tgz` and unzip/untar it. This downloading process is very slow. I tried it on Hera and Jet recently and the download speed is about 400kb~800kb/s while the file size is 7.3G. Anyone wants to experience this pain can try as follows, :) ``` wget https://bin.ssec.wisc.edu/pub/s4/CRTM//fix_REL-3.1.1.2.tgz tar xvf fix_REL-3.1.1.2.tgz ``` This PR creates that simple link (pointing to staged data under the `RDAS_DATA` directory) and eliminate that pain. It does not affect any current RDASApp functionalities, but supports a smooth build process when one want to replace `sorc/crtm` with CRTMv3 in his/her own offline play. Co-authored-by: Samuel Degelia --- .gitignore | 1 + bundle/fix | 1 + 2 files changed, 2 insertions(+) create mode 120000 bundle/fix diff --git a/.gitignore b/.gitignore index fdd9cb9..e3deaf8 100644 --- a/.gitignore +++ b/.gitignore @@ -154,6 +154,7 @@ install*/ !/bundle/ioda-data !/bundle/fv3-jedi-data !/bundle/mpas-jedi-data +!/bundle/fix # expr diff --git a/bundle/fix b/bundle/fix new file mode 120000 index 0000000..831822e --- /dev/null +++ b/bundle/fix @@ -0,0 +1 @@ +../fix/crtm/fix_REL-3.1.1.2/fix \ No newline at end of file