kirenbahm / ENP_TOOLS

Scripts used to pre- and post-process data
0 stars 2 forks source link

Fix labeling on postproc spatial maps #61

Open kirenbahm opened 3 years ago

kirenbahm commented 3 years ago

The postproc maps created in the A10 and A11 processes need to have titles and labels that use the third variable in the following lines: i = i + 1; INI.MODEL_SIMULATION_SET{i} = {INI.DATA_COMPUTED, 'M01_test', 'M01'}; i = i + 1; INI.MODEL_SIMULATION_SET{i} = {INI.DATA_COMPUTED, 'M06_test', 'M06'};

The labels should not use any part of the first two variables.

Here is an example of the lines I am using in practice: i = i + 1; INI.MODEL_SIMULATION_SET{i} = {INI.DATA_COMPUTED, 'M01_V1001_00WM_IOP-4e3886b', 'M01-IOP-4e3886b'}; i = i + 1; INI.MODEL_SIMULATION_SET{i} = {INI.DATA_COMPUTED, 'M01_V1001_00WM_IOP-aad717f', 'M01-IOP-aad717f'};

For some reason, the figures label the two different alternatives the same name.

kirenbahm commented 3 years ago

I merged the working branch into the master, but the problems in my comment still stand: https://github.com/kirenbahm/ENP_TOOLS/pull/62#issuecomment-808378363