Changeset 782 for XIOS/trunk/src/node


Ignore:
Timestamp:
11/12/15 16:33:03 (9 years ago)
Author:
mhnguyen
Message:

Reading attributes of curvilinear grid from file

+) Correct some minor bugs detecting type of grid
+) Use constant string for attributes conforming to CF convention
+) Add part of code to read attributes of curvilinear grid

Test
+) On Curie
+) test_remap passes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r775 r782  
    228228   { 
    229229     if (this->isRedistributed_) return; 
    230      if (type_attr::rectilinear == type) 
     230     if ((type_attr::rectilinear == type)  || (type_attr::curvilinear == type)) 
    231231     { 
    232232        this->isRedistributed_ = true; 
     
    328328 
    329329        // Now fill other attributes 
    330         fillInRectilinearLonLat(); 
     330        if (type_attr::rectilinear == type) fillInRectilinearLonLat(); 
    331331     } 
    332332   } 
Note: See TracChangeset for help on using the changeset viewer.