81 #include "Eigen/Dense"
86 #include "unsupported/Eigen/CXX11/Tensor"
88 int main(
int argc,
char** argv) {
179 const int sectionSize = 10;
198 NewDimensionScale<int>(
"nlocs", sectionSize,
Unlimited),
199 NewDimensionScale<int>(
"nchans",
numChans)
217 string tbName =
"ObsValue/brightness_temperature";
218 string latName =
"MetaData/latitude";
219 string lonName =
"MetaData/longitude";
224 float_params.
chunk =
true;
241 tbVar.atts.add<std::string>(
"coordinates", {
"longitude latitude nchans"}, {1})
242 .add<std::string>(
"long_name", {
"ficticious brightness temperature"}, {1})
243 .add<std::string>(
"units", {
"K"}, {1})
244 .add<float>(
"valid_range", {100.0, 400.0}, {2});
245 latVar.atts.add<std::string>(
"long_name", {
"latitude"}, {1})
246 .add<std::string>(
"units", {
"degrees_north"}, {1})
247 .add<float>(
"valid_range", {-90.0, 90.0}, {2});
248 lonVar.atts.add<std::string>(
"long_name", {
"longitude"}, {1})
249 .add<std::string>(
"units", {
"degrees_east"}, {1})
250 .add<float>(
"valid_range", {-360.0, 360.0}, {2});
258 for (std::size_t i = 0; i <
numLocs; ++i) {
259 lonData[i] =
static_cast<float>(i % 8) * 3.0f;
264 latData[i] =
static_cast<float>(i / 8) * 3.0f;
265 for (std::size_t j = 0; j <
numChans; ++j) {
266 float del_i =
static_cast<float>(i) -
midLoc;
267 float del_j =
static_cast<float>(j) -
midChan;
268 tbData(i, j) = 250.0f + sqrt(del_i * del_i + del_j * del_j);
281 std::size_t numLocsTransferred = 0;
282 std::size_t isection = 1;
284 std::cout <<
"Transferring data in sections to backend:" << std::endl << std::endl;
285 std::cout << std::setw(fwidth) <<
"Section" << std::setw(fwidth) <<
"Start" << std::setw(fwidth)
286 <<
"Count" << std::setw(fwidth) <<
"Resize" << std::endl;
287 while (numLocsTransferred <
numLocs) {
289 std::size_t sectionStart = numLocsTransferred;
290 std::size_t sectionCount = sectionSize;
291 if ((sectionStart + sectionCount) >
numLocs) {
292 sectionCount =
numLocs - sectionStart;
297 Dimensions_t nlocsNewSize
298 = (isection == 1) ? sectionCount : nlocsDims.
dimsCur[0] + sectionCount;
301 std::cout << std::setw(fwidth) << isection << std::setw(fwidth) << sectionStart
302 << std::setw(fwidth) << sectionCount << std::setw(fwidth) << nlocsNewSize
306 og.resize({std::pair<Variable, Dimensions_t>(
nlocsVar, nlocsNewSize)});
317 std::vector<Dimensions_t> starts(1, sectionStart);
318 std::vector<Dimensions_t> counts(1, sectionCount);
338 tbVar.writeWithEigenRegular(
tbData, feSelect2D, beSelect2D);
340 numLocsTransferred += sectionCount;
357 int nlocsSize = gsl::narrow<int>(
nlocsVar.getDimensions().dimsCur[0]);
358 std::vector<int> nlocsVals(nlocsSize);
359 std::iota(nlocsVals.begin(), nlocsVals.end(), 1);
363 }
catch (
const std::exception& e) {
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
Interfaces for ioda::ObsGroup and related classes.
Groups are a new implementation of ObsSpaces.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
static ObsGroup generate(Group &emptyGroup, const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout=nullptr)
Create an empty ObsGroup and populate it with the fundamental dimensions.
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
int main(int argc, char **argv)
Selection & extent(const VecDimensions_t &sz)
Provide the dimensions of the object that you are selecting from.
Selection & select(const SingleSelection &s)
Append a new selection.
constexpr int Unlimited
Specifies that a dimension is resizable to infinity.
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Used to specify Variable creation-time properties.
void compressWithGZIP(int level=6)
VariableCreationParameters & setFillValue(DataType fill)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.