Changeset 2579
- Timestamp:
- 09/25/23 12:06:20 (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS3/trunk/src/io/onetcdf4.cpp
r2532 r2579 9 9 #include "netCdfException.hpp" 10 10 #include "timer.hpp" 11 #include "file.hpp" 11 12 12 13 namespace xios … … 391 392 std::vector<CDomain*> domains = grid->getDomains(); 392 393 std::vector<CAxis*> axis = grid->getAxis(); 394 bool singleDomain = (field->getRelFile()->nbDomains == 1); 393 395 394 396 std::vector<double> userChunkingWeights; // store chunking coefficients defined by users … … 426 428 if (dom->type==CDomain::type_attr::rectilinear) axisDim="lon"; 427 429 } 430 if (!singleDomain) axisDim+="_"+dom->getDomainOutputName(); 428 431 if (axisDim == *itId) 429 432 { … … 440 443 if (dom->type==CDomain::type_attr::rectilinear) axisDim="lat"; 441 444 } 445 if (!singleDomain) axisDim+="_"+dom->getDomainOutputName(); 442 446 if (axisDim == *itId) 443 447 {
Note: See TracChangeset
for help on using the changeset viewer.