Skip to content

Commit

Permalink
qc1
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-dixon committed Oct 31, 2024
1 parent 88542d0 commit 10da191
Show file tree
Hide file tree
Showing 7 changed files with 2,411 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@
%% Load data TS
disp(['Loading time series file ',num2str(bb),' of ' num2str(length(fileListTS)),' ...']);

data=read_TsArchive_iwrf_bulk(fileListTS{bb},data);
try
data=read_TsArchive_iwrf_bulk(fileListTS{bb},data);
catch
disp('Could not read file. Moving on.')
continue
end

% Find available times
timeTest=data.time';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
addpath(genpath('~/git/HCR_configuration/projDir/qcDualPRTground/dataProcessing/'));

project='meow';
quality='qc0';
quality='qc1';
freqData='10hz_combined';
qcVersion='';
qcVersion='v1.0';

infile=['~/git/HCR_configuration/projDir/qcDualPRTground/dataProcessing/scriptsFiles/iops_',project,'.txt'];

caseList = table2array(readtable(infile));

indir=HCRdir(project,quality,qcVersion,freqData);

figdir=[indir(1:end-14),'flightPlots/'];
figdir=[indir(1:end-14),'iopPlots/'];


%% Run processing

% Go through flights
for ii=11:size(caseList,1)
for ii=1:size(caseList,1)

disp(['IOP ',num2str(ii),' of ',num2str(size(caseList,1))]);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
2024 05 10 16 25 00 2024 05 10 21 15 00
2024 05 20 19 50 00 2024 05 21 00 35 00
2024 05 20 20 00 00 2024 05 21 00 35 00
2024 05 21 18 25 00 2024 05 22 01 35 00
2024 05 29 19 20 00 2024 05 29 22 55 00
2024 05 30 21 15 00 2024 05 30 23 00 00
2024 05 29 18 25 00 2024 05 29 20 40 00
2024 05 30 21 10 00 2024 05 30 22 25 00
2024 06 07 21 00 00 2024 06 07 23 20 00
2024 06 10 20 45 00 2024 06 10 23 50 00
2024 06 14 18 20 00 2024 06 14 22 20 00
2024 06 20 20 50 00 2024 06 20 23 20 00
2024 06 24 18 15 00 2024 06 24 23 15 00
2024 06 27 15 30 00 2024 06 27 17 35 00
2024 06 24 20 20 00 2024 06 24 23 15 00
2024 06 27 15 30 00 2024 06 27 17 00 00
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
2024 05 10 16 25 00 2024 05 10 21 15 00
2024 05 20 19 50 00 2024 05 21 00 35 00
2024 05 10 16 15 00 2024 05 10 21 30 00
2024 05 20 20 00 00 2024 05 21 00 35 00
2024 05 21 18 25 00 2024 05 22 01 35 00
2024 05 29 19 20 00 2024 05 29 22 55 00
2024 05 30 21 15 00 2024 05 30 23 00 00
2024 05 29 18 25 00 2024 05 29 23 00 00
2024 05 30 21 10 00 2024 05 30 23 00 00
2024 06 07 21 00 00 2024 06 07 23 20 00
2024 06 10 20 45 00 2024 06 10 23 50 00
2024 06 14 18 20 00 2024 06 14 22 20 00
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ cd ~/git/HCR_configuration/projDir/qcDualPRTground/scripts
#################################################################
# Trimm down times
# Make data copy with selected times we want in the final dataset. Run
$PROJ_DIR/qcDualPRTground/scripts/run_RadxConvert.qc.select_times.spicule
$PROJ_DIR/qcDualPRTground/scripts/run_RadxConvert.qc.select_times.meow

# This will put the selected timess in
# $DATA_DIR/QC_VERSION/cfradial/selected_times
Expand All @@ -177,7 +177,7 @@ $PROJ_DIR/qcDualPRTground/scripts/run_RadxConvert.qc.select_times.spicule
# Copy to version

# We make another copy of selected_times to
# $DATA_DIR/QC_VERSION/cfradial/v1.0_full
$DATA_DIR/QC_VERSION/cfradial/v1.0_full
# Where the model data, flag field, etc. will be added
# selected_times is a backup which can be copied to v1.0
# again if something goes wrong during the addition of the
Expand Down
Loading

0 comments on commit 10da191

Please sign in to comment.