We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create some large files from the find command for each project:
find
NOTE: list to the level of all the NetCDF files - under the version directories (not latest).
latest
Store the files in the "smf" GWS.
Write some python to parse them into Pandas DataFrames that we can do interrogation on.
The text was updated successfully, but these errors were encountered:
$ cat make-file-lists.sh #!/bin/bash cd /home/users/astephen/roocs/proto-lib-34e/ find -L /badc/cordex/data/cordex/output -iname "*.nc" | grep -v latest > file-list-cordex.txt find -L /badc/cmip5/data/cmip5/output*/*/*/* -iname "*.nc" | grep -v latest > file-list-cmip5.txt find -L /badc/cmip6/data/CMIP6/*/*/*/* -iname "*.nc" | grep -v latest > file-list-cmip6.txt [astephen@sci2 proto-lib-34e]$ cat batch-make-file-lists.sh D=$PWD bsub -q short-serial \ -o $D/lotus.out \ -e $D/lotus.err \ -W 23:59 \ $D/make-file-lists.sh
Sorry, something went wrong.
Add some code to ingest them into a DataFrame then save as good DataFrame format (maybe zipped csv).
zipped csv
ellesmith88
No branches or pull requests
Create some large files from the
find
command for each project:NOTE: list to the level of all the NetCDF files - under the version directories (not
latest
).Store the files in the "smf" GWS.
Write some python to parse them into Pandas DataFrames that we can do interrogation on.
The text was updated successfully, but these errors were encountered: