2014-03-31 12:57:06 +00:00
|
|
|
# data/CMakeLists.txt
|
2023-02-04 15:52:14 +00:00
|
|
|
set(ECBUILD_DOWNLOAD_TIMEOUT 60)
|
|
|
|
set(ECBUILD_DOWNLOAD_RETRIES 3)
|
2023-02-04 15:51:39 +00:00
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
add_subdirectory(tigge)
|
2014-08-05 16:04:23 +00:00
|
|
|
add_subdirectory(bufr)
|
2015-04-10 12:39:03 +00:00
|
|
|
add_subdirectory(metar)
|
2015-03-17 17:18:18 +00:00
|
|
|
add_subdirectory(gts)
|
2014-03-31 12:57:06 +00:00
|
|
|
|
|
|
|
|
2015-03-16 11:02:13 +00:00
|
|
|
# Download all the binary GRIB data from website
|
2015-07-02 12:02:54 +00:00
|
|
|
|
|
|
|
file(READ "grib_data_files.txt" files_to_download)
|
|
|
|
string(REGEX REPLACE "\n" ";" files_to_download "${files_to_download}")
|
2022-02-16 15:43:38 +00:00
|
|
|
|
2022-03-04 14:42:25 +00:00
|
|
|
# Download the CCSDS files even if HAVE_AEC feature is disabled.
|
2022-02-16 15:43:38 +00:00
|
|
|
# This is for testing (See ECC-1352)
|
|
|
|
list(APPEND files_to_download ccsds.grib2)
|
2022-03-04 14:42:25 +00:00
|
|
|
list(APPEND files_to_download ccsds_szip.grib2) # See ECC-1362
|
2022-02-16 15:43:38 +00:00
|
|
|
|
2014-11-25 13:11:19 +00:00
|
|
|
|
2018-10-23 15:33:07 +00:00
|
|
|
if( ENABLE_EXTRA_TESTS )
|
|
|
|
# Download all data files
|
|
|
|
ecbuild_get_test_multidata( TARGET eccodes_download_gribs
|
2015-09-18 16:18:12 +00:00
|
|
|
NOCHECK
|
2015-07-02 12:02:54 +00:00
|
|
|
NAMES ${files_to_download} )
|
2018-10-23 15:33:07 +00:00
|
|
|
endif()
|
2016-06-21 15:24:37 +00:00
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
# Copy other files - e.g. reference data, text files etc from the source data dir
|
2020-03-26 14:21:56 +00:00
|
|
|
list(APPEND other_files
|
2014-03-31 12:57:06 +00:00
|
|
|
60_model_levels
|
|
|
|
bitmap.diff
|
|
|
|
ieee_test.good
|
|
|
|
index.ok
|
|
|
|
index_f90.ok
|
|
|
|
julian.out.good
|
|
|
|
list_points
|
|
|
|
local.good.log
|
|
|
|
ls.log
|
|
|
|
multi.ok
|
|
|
|
multi_step.txt
|
|
|
|
no_bitmap.diff
|
|
|
|
read_any.ok
|
|
|
|
scan_x_regular_ll_5_4_good.dump
|
|
|
|
scan_x_regular_ll_5_7_good.dump
|
|
|
|
scan_x_regular_ll_8_4_good.dump
|
|
|
|
scan_x_regular_ll_8_7_good.dump
|
|
|
|
scan_x_rotated_ll_5_4_good.dump
|
|
|
|
scan_x_rotated_ll_5_7_good.dump
|
|
|
|
scan_x_rotated_ll_8_4_good.dump
|
|
|
|
scan_x_rotated_ll_8_7_good.dump
|
|
|
|
scan_y_regular_ll_5_4_good.dump
|
|
|
|
scan_y_regular_ll_5_7_good.dump
|
|
|
|
scan_y_regular_ll_8_4_good.dump
|
|
|
|
scan_y_regular_ll_8_7_good.dump
|
|
|
|
scan_y_rotated_ll_5_4_good.dump
|
|
|
|
scan_y_rotated_ll_5_7_good.dump
|
|
|
|
scan_y_rotated_ll_8_4_good.dump
|
|
|
|
scan_y_rotated_ll_8_7_good.dump
|
|
|
|
spherical_model_level.grib1.good
|
|
|
|
spherical_model_level.grib1_32.good
|
|
|
|
statistics.out.good
|
|
|
|
step.log
|
|
|
|
step_grib1.filter
|
|
|
|
step_grib1.log
|
|
|
|
typeOfProcessedData.ok
|
2014-06-18 16:14:01 +00:00
|
|
|
tigge_pf_ecmwf.grib2.ref
|
2016-08-05 10:33:37 +00:00
|
|
|
grib_data_files.txt
|
2020-07-03 12:50:12 +00:00
|
|
|
BUFR3.tmpl.dump.plain.ref
|
2014-03-31 12:57:06 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
foreach( file ${other_files} )
|
|
|
|
execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${file} ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
endforeach()
|