8 #ifndef OBSSPACEPARAMETERS_H_
9 #define OBSSPACEPARAMETERS_H_
14 #include "ioda/core/FileFormat.h"
15 #include "ioda/core/ParameterTraitsFileFormat.h"
18 #include "ioda/io/ObsIoFactory.h"
19 #include "ioda/io/ObsIoParametersBase.h"
21 #include "eckit/exception/Exceptions.h"
22 #include "eckit/mpi/Comm.h"
24 #include "oops/base/ObsSpaceBase.h"
25 #include "oops/base/ParameterTraitsVariables.h"
26 #include "oops/util/DateTime.h"
27 #include "oops/util/Logger.h"
28 #include "oops/util/parameters/OptionalParameter.h"
29 #include "oops/util/parameters/Parameter.h"
30 #include "oops/util/parameters/Parameters.h"
31 #include "oops/util/parameters/RequiredParameter.h"
32 #include "oops/util/parameters/RequiredPolymorphicParameter.h"
46 oops::RequiredParameter<std::string>
fileName{
"obsfile",
this};
67 oops::Parameter<std::string>
mappingFile{
"mapping file",
"",
this};
71 oops::Parameter<std::string>
queryFile{
"query file",
"",
this};
79 oops::RequiredParameter<std::string>
fileName{
"obsfile",
this};
87 oops::RequiredParameter<int>
numModelLevels{
"average profiles onto model levels",
this};
91 {
"variables filled with non-missing values",
92 {
"latitude",
"longitude",
"datetime",
"air_pressure",
93 "air_pressure_levels",
"station_id" },
102 oops::Parameter<std::vector<float>>
obsErrors{
"obs errors", { },
this};
110 oops::RequiredParameter<int>
numObs{
"nobs",
this};
113 oops::RequiredParameter<float>
latStart{
"lat1",
this};
116 oops::RequiredParameter<float>
latEnd{
"lat2",
this};
119 oops::RequiredParameter<float>
lonStart{
"lon1",
this};
122 oops::RequiredParameter<float>
lonEnd{
"lon2",
this};
125 oops::OptionalParameter<int>
ranSeed{
"random seed",
this};
142 oops::RequiredParameter<std::vector<float>>
lats{
"lats",
this};
145 oops::RequiredParameter<std::vector<float>>
lons{
"lons",
this};
148 oops::RequiredParameter<std::vector<std::string>>
datetimes{
"datetimes",
this};
169 oops::OptionalParameter<EmbeddedObsGenerateRandomParameters>
random{
"random",
this};
172 oops::OptionalParameter<EmbeddedObsGenerateListParameters>
list{
"list",
this};
175 oops::Parameter<ObsGroupingParameters>
obsGrouping{
"obsgrouping", { },
this};
178 oops::Parameter<std::vector<float>>
obsErrors{
"obs errors", { },
this};
187 oops::RequiredPolymorphicParameter<ObsIoParametersBase, ObsIoFactory>
199 void deserialize(util::CompositePath &path,
const eckit::Configuration &config)
override;
205 oops::Parameter<std::string>
distName{
"distribution",
"RoundRobin",
this};
221 oops::RequiredParameter<oops::Variables>
simVars{
"simulated variables",
this};
225 oops::Parameter<oops::Variables>
derivedSimVars{
"derived simulated variables", {},
this};
228 oops::OptionalParameter<std::vector<float>>
haloCenter{
"center",
this};
234 oops::OptionalParameter<ObsFileOutParameters>
obsOutFile{
"obsdataout",
this};
237 oops::OptionalParameter<ObsExtendParameters>
obsExtend{
"extension",
this};
241 if (
source.value() != boost::none)
242 return source.value()->obsIoInParameters.value();
243 throw eckit::BadValue(
"obsIoInParameters() must not be called before deserialize()", Here());
248 oops::OptionalParameter<ObsFileInParameters>
obsInFile{
"obsdatain",
this};
251 oops::OptionalParameter<LegacyObsGenerateParameters>
obsGenerate{
"generate",
this};
255 oops::OptionalParameter<ObsIoParametersWrapper>
source{
"source",
this};
265 const util::DateTime & winStart,
const util::DateTime & winEnd,
266 const eckit::mpi::Comm &
comm,
const eckit::mpi::Comm &
timeComm) :
305 void setDimScale(
const std::string & dimName,
const Dimensions_t curSize,
306 const Dimensions_t maxSize,
const Dimensions_t chunkSize) {
308 NewDimensionScale<int>(dimName, curSize, maxSize, chunkSize));
Convenience classes for constructing ObsSpaces and setting up new Dimension Scales.
Describe the dimensions of a ioda::Attribute or ioda::Variable.
oops::RequiredParameter< std::vector< float > > lats
latitude values
oops::RequiredParameter< std::vector< std::string > > datetimes
datetime values
oops::RequiredParameter< std::vector< float > > lons
longitude values
oops::RequiredParameter< float > latEnd
latitude range end
oops::RequiredParameter< float > lonStart
longitude range start
oops::RequiredParameter< float > latStart
latitude range start
oops::OptionalParameter< int > ranSeed
random seed
oops::RequiredParameter< float > lonEnd
longitude range end
oops::RequiredParameter< int > numObs
number of observations
Options in the 'generate' YAML section.
oops::Parameter< std::vector< float > > obsErrors
obs error estimates
oops::Parameter< ObsGroupingParameters > obsGrouping
options controlling obs record grouping
oops::OptionalParameter< EmbeddedObsGenerateRandomParameters > random
specification for generating using the random method
oops::OptionalParameter< EmbeddedObsGenerateListParameters > list
specification for generating using the list method
oops::Parameter< int > maxFrameSize
maximum frame size
oops::Parameter< std::vector< std::string > > nonMissingExtendedVars
Variables that are filled with non-missing values when producing averaged profiles.
oops::RequiredParameter< int > numModelLevels
Number of model levels onto which original profiles are averaged.
oops::Parameter< FileFormat > format
oops::Parameter< std::string > queryFile
oops::Parameter< std::string > mappingFile
oops::Parameter< bool > readFromSeparateFiles
oops::RequiredParameter< std::string > fileName
input obs file name
oops::RequiredParameter< std::string > fileName
output obs file name
Options controlling the ObsIoGenerateList class.
EmbeddedObsGenerateListParameters list
options shared by this class and the legacy implementation (LegacyObsGenerateParameters)
oops::Parameter< std::vector< float > > obsErrors
obs error estimates
Options controlling the ObsIoGenerateRandom class.
EmbeddedObsGenerateRandomParameters random
options shared by this class and the legacy implementation (LegacyObsGenerateParameters)
Base of classes storing the configuration parameters of ObsIo subclasses.
oops::RequiredPolymorphicParameter< ObsIoParametersBase, ObsIoFactory > obsIoInParameters
const eckit::mpi::Comm & time_comm_
MPI time communicator.
int obsPertSeed() const
return the associated perturbations seed
NewDimensionScales_t new_dims_
new dimension scales for output file construction
int getMpiTimeRank() const
get the MPI rank number
const util::DateTime & windowEnd() const
return the end of the DA timing window
void setMaxVarSize(const Dimensions_t maxVarSize)
set the maximum variable size
ObsTopLevelParameters top_level_
sub groups of parameters
std::size_t mpi_rank_
group MPI rank number for output file construction
std::size_t getMpiRank() const
get the MPI rank number
NewDimensionScales_t getDimScales() const
get a new dimension scale
const util::DateTime win_start_
Beginning of DA timing window.
const eckit::mpi::Comm & comm_
MPI group communicator.
void setDimScale(const std::string &dimName, const Dimensions_t curSize, const Dimensions_t maxSize, const Dimensions_t chunkSize)
set a new dimension scale
Dimensions_t getMaxVarSize() const
get the maximum variable size
int mpi_time_rank_
time MPI rank number of output file construction
const eckit::mpi::Comm & timeComm() const
return the associated MPI time communicator
const util::DateTime & windowStart() const
return the start of the DA timing window
const eckit::mpi::Comm & comm() const
return the associated MPI group communicator
const util::DateTime win_end_
End of DA timing window.
ObsSpaceParameters(const ObsTopLevelParameters &topLevelParams, const util::DateTime &winStart, const util::DateTime &winEnd, const eckit::mpi::Comm &comm, const eckit::mpi::Comm &timeComm)
Constructor.
Dimensions_t max_var_size_
maximum variable size for output file contruction
oops::OptionalParameter< ObsFileInParameters > obsInFile
Fill this section to read observations from a file.
oops::OptionalParameter< float > haloRadius
Halo distribution radius.
oops::OptionalParameter< LegacyObsGenerateParameters > obsGenerate
Fill this section to generate observations on the fly.
oops::RequiredParameter< oops::Variables > simVars
simulated variables
void deserialize(util::CompositePath &path, const eckit::Configuration &config) override
oops::OptionalParameter< ObsIoParametersWrapper > source
Fill this section instead of obsdatain and generate to load observations from any other source.
oops::OptionalParameter< std::vector< float > > haloCenter
Halo distribution center.
oops::OptionalParameter< ObsExtendParameters > obsExtend
extend the ObsSpace with extra fixed-size records
oops::RequiredParameter< std::string > obsSpaceName
name of obs space
oops::Parameter< bool > saveObsDistribution
oops::OptionalParameter< ObsFileOutParameters > obsOutFile
output specification by writing to a file
oops::Parameter< oops::Variables > derivedSimVars
oops::Parameter< std::string > distName
name of MPI distribution
const ObsIoParametersBase & obsIoInParameters() const
parameters indicating where to load data from
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
constexpr int DEFAULT_FRAME_SIZE