Ignore:
Timestamp:
08/31/22 09:36:50 (22 months ago)
Author:
jderouillat
Message:

Add a nvertex_name attribute for Domain

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/io/nc4_data_output.cpp

    r2394 r2395  
    855855         StdString dimXid = cellName+appendDomid; 
    856856         StdString dimVertId; 
    857          if (!domain->dim_j_name.isEmpty()) dimVertId=domain->dim_j_name; 
    858          else dimVertId = StdString("nvertex").append(appendDomid); 
     857         if (domain->nvertex_name.isEmpty()) dimVertId = "nvertex"; 
     858         else dimVertId = domain->nvertex_name; 
    859859 
    860860         string lonid,latid,bounds_lonid,bounds_latid ; 
Note: See TracChangeset for help on using the changeset viewer.