Changeset 2655


Ignore:
Timestamp:
09/19/24 17:19:34 (3 weeks ago)
Author:
jderouillat
Message:

Exclude long_name from CDomain/CAxis::computeAttributesHash

Location:
XIOS3/trunk/src/node
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/node/axis.cpp

    r2632 r2655  
    351351     excludedAttr.push_back("label"); 
    352352     excludedAttr.push_back("mask"); // ??? 
     353     excludedAttr.insert(excludedAttr.end(), { "long_name" }); 
    353354 
    354355     size_t globalHash = this->computeGlobalAttributesHash( excludedAttr ); 
  • XIOS3/trunk/src/node/domain.cpp

    r2632 r2655  
     1 
    12#include "domain.hpp" 
    23#include "attribute_template.hpp" 
     
    18651866     excludedAttr.insert(excludedAttr.end(), { "bounds_lonvalue_curvilinear_read_from_file", "bounds_latvalue_curvilinear_read_from_file", "lonvalue_unstructured_read_from_file", "latvalue_unstructured_read_from_file" }); 
    18661867     excludedAttr.insert(excludedAttr.end(), { "bounds_lonvalue_unstructured_read_from_file", "bounds_latvalue_unstructured_read_from_file" }); 
     1868     excludedAttr.insert(excludedAttr.end(), { "long_name" }); 
    18671869      
    18681870     size_t globalHash = this->computeGlobalAttributesHash( excludedAttr ); 
Note: See TracChangeset for help on using the changeset viewer.