Directory Structure on NASA Discover
All CoReSSD data and code live under a single root on the NASA Discover HPC cluster:
/discover/nobackup/projects/coressd
Top-Level Structure
/discover/nobackup/projects/coressd
├── OSU/
│ └── MOD10A1F.061/MODIS_Proc/
│ └── download_snow/ # raw MOD10A1F CGF tiles
├── mwrzesie/
│ └── runOL/out.OL/SURFACEMODEL/ # Raw NoahMP/LIS outputs (generated by M. Wrzesien)
├── Blender/
│ ├── Inputs/ # staged LIS + MODIS inputs, by water year
│ │ └── WYxxxx/
│ │ ├── Snowf_tavg.nc
│ │ ├── SWE_tavg.nc
│ │ ├── Tair_f_tavg.nc
│ │ ├── Qg_tavg.nc
│ │ └── SCF.nc
│ ├── Modis/
│ │ ├── MOD44B/ # annual tree-cover (reprojected, matched to LIS)
│ │ └── MOD10A1F/ # snow-cover intermediates
│ │ └── clipped_WYxxxx/
│ └── Runs/
│ └── WYxxxx/
│ ├── temp_nc/ # slice Blender outputs (delete after merging)
│ └── outputs/ # final continental merged NetCDF files
├── Github/
│ ├── verse/ # Blender Julia + Python scripts
│ ├── Slurm_Blender/ # slurm job scripts for input generation & post-processing
│ ├── slurm_jobs/ # auto-generated by submit_slurm.jl at run time
│ └── wshed/ # watershed bounding-box data for test runs
├── csd_dev/ # CoReSSD intermediary processing (MATLAB)
├── csd_aux_data/
│ └── aux_data -> symlink # shapefiles, DEM, projection, ocean mask
└── installs/
├── miniforge3/
├── julia-1-11.6/
└── .julia/
Notes
OSU/holds raw MODIS MOD10A1F Collection 6.1 tiles downloaded from NSIDC.mwrzesie/contains open-loop LIS runs produced by collaborators; these serve as the model prior.Blender/Inputs/is the staging area for pre-processed inputs ready for the Blender algorithm.Blender/Runs/WYxxxx/temp_nc/holds temporary per-slice outputs and can be deleted after the continental merge step.installs/contains Julia and conda environments shared across the project.csd_dev/must be the working directory when running the MATLAB preprocessing pipeline (see Intermediary Processing).