Ignore:
Timestamp:
01/07/16 09:21:51 (8 years ago)
Author:
ymipsl
Message:

Bug fix when time dimension is not the unlimited dimension

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/io/netCdfInterface.cpp

    r782 r811  
    995995   int varId = 0; 
    996996   return (NC_NOERR == (nc_inq_varid(ncId, varName.c_str(), &varId))); 
     997} 
     998 
     999bool CNetCdfInterface::isDimExisted(int ncId, const StdString& dimName) 
     1000{ 
     1001   int dimId = 0; 
     1002   return (NC_NOERR == (nc_inq_dimid(ncId, dimName.c_str(), &dimId))); 
    9971003} 
    9981004 
Note: See TracChangeset for help on using the changeset viewer.