This commit is contained in:
Ward Fisher 2024-07-15 15:33:31 -06:00
commit fce3e005b0
4 changed files with 6 additions and 10 deletions

View File

@ -17,9 +17,7 @@ project(netCDF
)
#Add custom CMake Module
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules/;${PROJECT_SOURCE_DIR}/cmake"
CACHE INTERNAL "Location of our custom CMake modules.")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules" "${PROJECT_SOURCE_DIR}/cmake")
set(PACKAGE "netCDF" CACHE STRING "")

View File

@ -1,10 +1,9 @@
netcdf ref_oldformat {
dimensions:
lat = 8 ;
_Anonymous_Dim_8 = 8 ;
_Anonymous_Dim_10 = 10 ;
variables:
int lat(lat) ;
int lat(_Anonymous_Dim_8) ;
lat:_FillValue = -1 ;
string lat:lat_attr = "latitude" ;
data:

View File

@ -1,8 +1,9 @@
netcdf ref_oldformat {
dimensions:
lat = 8 ;
_Anonymous_Dim_8 = 8 ;
_Anonymous_Dim_10 = 10 ;
variables:
int lat(lat) ;
int lat(_Anonymous_Dim_8) ;
lat:_FillValue = -1 ;
lat:lat_attr = "latitude" ;
data:
@ -10,10 +11,8 @@ data:
lat = 1, 2, 3, 4, 5, 6, 7, 8 ;
group: g1 {
dimensions:
lon = 10 ;
variables:
int pos(lat, lon) ;
int pos(_Anonymous_Dim_8, _Anonymous_Dim_10) ;
pos:_FillValue = -1 ;
pos:pos_attr = "latXlon" ;

Binary file not shown.