[Dart-dev] DART/branches Revision: 12519
dart at ucar.edu
dart at ucar.edu
Mon Apr 16 11:28:52 MDT 2018
thoar at ucar.edu
2018-04-16 11:28:51 -0600 (Mon, 16 Apr 2018)
294
Finished the documentation for the TERENO observation converter.
By checking to see if the data value equaled itself, the intel and
gfortran compilers agreed on the observation creation.
using a standard 'observation QC' in the converters for terrsysmp
fixing svn properties, copyrights ...
Modified: DART/branches/lanai_terrsysmp/diagnostics/matlab/plot_obs_netcdf.m
===================================================================
--- DART/branches/lanai_terrsysmp/diagnostics/matlab/plot_obs_netcdf.m 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/diagnostics/matlab/plot_obs_netcdf.m 2018-04-16 17:28:51 UTC (rev 12519)
@@ -26,7 +26,7 @@
% ObsTypeString = 'ALL';
% region = [0 360 -90 90 -Inf Inf];
% CopyString = 'WOD observation';
-% QCString = 'WOD QC';
+% QCString = 'original QC';
% maxgoodQC = 0;
% verbose = 1; % anything > 0 == 'true'
% twoup = 1; % anything > 0 == 'true'
Modified: DART/branches/lanai_terrsysmp/models/clm/work/input.nml
===================================================================
--- DART/branches/lanai_terrsysmp/models/clm/work/input.nml 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/models/clm/work/input.nml 2018-04-16 17:28:51 UTC (rev 12519)
@@ -301,7 +301,16 @@
filename_out = 'obs_seq.combined'
print_only = .false.
gregorian_cal = .true.
- synonymous_qc_list = 'COSMOS QC','Ameriflux QC'
+ first_obs_days = -1
+ first_obs_seconds = -1
+ last_obs_days = -1
+ last_obs_seconds = -1
+ min_lat = -90.0
+ max_lat = 90.0
+ min_lon = 0.0
+ max_lon = 360.0
+ edit_qc_metadata = .true.
+ new_qc_metadata = 'original QC'
/
Modified: DART/branches/lanai_terrsysmp/observations/AIRS/airs_obs_mod.f90
===================================================================
--- DART/branches/lanai_terrsysmp/observations/AIRS/airs_obs_mod.f90 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/observations/AIRS/airs_obs_mod.f90 2018-04-16 17:28:51 UTC (rev 12519)
@@ -134,7 +134,7 @@
end do
do i = 1, num_qc
- call set_qc_meta_data(real_obs_sequence, i, 'AIRS QC')
+ call set_qc_meta_data(real_obs_sequence, i, 'original QC')
end do
! Initialize the obs variables
Modified: DART/branches/lanai_terrsysmp/observations/AURA/convert_aura.f90
===================================================================
--- DART/branches/lanai_terrsysmp/observations/AURA/convert_aura.f90 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/observations/AURA/convert_aura.f90 2018-04-16 17:28:51 UTC (rev 12519)
@@ -123,7 +123,7 @@
call set_copy_meta_data(obs_seq, k, 'observation')
end do
do k = 1, num_qc
- call set_qc_meta_data(obs_seq, k, 'Data QC')
+ call set_qc_meta_data(obs_seq, k, 'original QC')
end do
else
@@ -136,7 +136,7 @@
call set_copy_meta_data(obs_seq, k, 'observation')
end do
do k = 1, num_qc
- call set_qc_meta_data(obs_seq, k, 'Data QC')
+ call set_qc_meta_data(obs_seq, k, 'original QC')
end do
end if
Modified: DART/branches/lanai_terrsysmp/observations/Ameriflux/level4_to_obs.f90
===================================================================
--- DART/branches/lanai_terrsysmp/observations/Ameriflux/level4_to_obs.f90 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/observations/Ameriflux/level4_to_obs.f90 2018-04-16 17:28:51 UTC (rev 12519)
@@ -187,7 +187,7 @@
! the first one needs to contain the string 'observation' and the
! second needs the string 'QC'.
call set_copy_meta_data(obs_seq, 1, 'observation')
-call set_qc_meta_data( obs_seq, 1, 'Ameriflux QC')
+call set_qc_meta_data( obs_seq, 1, 'original QC')
! The first line describes all the fields ... column headers, if you will
Modified: DART/branches/lanai_terrsysmp/observations/CHAMP/CHAMP_density_text_to_obs.f90
===================================================================
--- DART/branches/lanai_terrsysmp/observations/CHAMP/CHAMP_density_text_to_obs.f90 2018-04-13 21:16:21 UTC (rev 12518)
+++ DART/branches/lanai_terrsysmp/observations/CHAMP/CHAMP_density_text_to_obs.f90 2018-04-16 17:28:51 UTC (rev 12519)
@@ -123,7 +123,7 @@
! the first one needs to contain the string 'observation' and the
! second needs the string 'QC'.
call set_copy_meta_data(obs_seq, 1, 'observation')
-call set_qc_meta_data(obs_seq, 1, 'Data QC')
+call set_qc_meta_data(obs_seq, 1, 'original QC')
! if you want to append to existing files (e.g. you have a lot of
! small text files you want to combine), you can do it this way,
More information about the Dart-dev
mailing list