Add MATLAB GRF_Representativeness project scaffold - #1
Draft
nikegoose wants to merge 1 commit into
Draft
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
.gitignorehygiene so local data (e.g.MyWRFdata.mat) can remain out of version control.Description
GRF_Representativeness/directory tree and a pipeline entrypointmain.mthat wires configuration and runsrun_stream1→run_stream2→run_stream3and saves a final summary.config_paths.m,config_parameters.m, andconfig_plot.mfor paths, parameters, and plotting defaults.data_io/stubs forload_wrf_field,load_station_data,load_preprocessed_mat, andsave_intermediate, and core utilities includingcompute_ks_distance,compute_distribution,select_representative_days,generate_ensemble_perturbation,compute_utci(simplified proxy), andcross_validation_split.stream1_forecast_based/,stream2_empirical_methods/, andstream3_utci_impact/with orchestration and simple placeholder logic, figure helpers infigures/, result/intermediate folders, and basic unit/smoke tests intests/..gitignoreentry to excludeMyWRFdata.matand other common local artifacts.Testing
find GRF_Representativeness -maxdepth 3 -type d -o -type f | sort, which succeeded and listed the created files and directories.matlab -batch "runtests('GRF_Representativeness/tests')", which failed because MATLAB is not available in this environment (bash: command not found: matlab).git status --short && git rev-parse --short HEADto validate changes were staged and a working tree revision exists, which returned a short HEAD identifier.Codex Task