File tree 3 files changed +37
-0
lines changed
3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ add_subdirectory( src )
67
67
68
68
add_subdirectory ( docs )
69
69
70
+ add_subdirectory ( share )
71
+
70
72
################################################################################
71
73
# Export and summarize
72
74
Original file line number Diff line number Diff line change
1
+ # (C) British Crown Copyright 2024 Met Office
2
+
3
+ list ( APPEND shared_files
4
+ odb_col_chl_query_filter_null.yaml
5
+ )
6
+
7
+ set ( destination share/orca-jedi/odb-query )
8
+
9
+ install (
10
+ FILES ${shared_files}
11
+ DESTINATION ${destination}
12
+ PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
13
+
14
+ file ( MAKE_DIRECTORY ${CMAKE_BINARY_DIR} /${destination} )
15
+
16
+ foreach ( file ${shared_files} )
17
+ execute_process (COMMAND "${CMAKE_COMMAND} " "-E" "copy_if_different"
18
+ "${CMAKE_CURRENT_SOURCE_DIR} /${file} "
19
+ "${CMAKE_BINARY_DIR} /${destination} /${file} " )
20
+ endforeach ()
Original file line number Diff line number Diff line change
1
+ where :
2
+ varno : [288,]
3
+ query : initial_obsvalue is not null
4
+ variables :
5
+ - name : receipt_time
6
+ - name : receipt_date
7
+ - name : initial_obsvalue
8
+ - name : instrument_type
9
+ - name : lat
10
+ - name : lon
11
+ - name : date
12
+ - name : time
13
+ - name : ops_obsgroup
14
+ - name : varno
15
+ - name : seqno
You can’t perform that action at this time.
0 commit comments