-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# (C) British Crown Copyright 2024 Met Office | ||
|
||
list( APPEND shared_files | ||
odb_col_chl_query_filter_null.yaml | ||
) | ||
|
||
set( destination share/orca-jedi/odb-query ) | ||
|
||
install( | ||
FILES ${shared_files} | ||
DESTINATION ${destination} | ||
PERMISSIONS OWNER_READ GROUP_READ WORLD_READ) | ||
|
||
file( MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/${destination} ) | ||
|
||
foreach( file ${shared_files} ) | ||
execute_process(COMMAND "${CMAKE_COMMAND}" "-E" "copy_if_different" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/${file}" | ||
"${CMAKE_BINARY_DIR}/${destination}/${file}") | ||
endforeach() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
where: | ||
varno: [288,] | ||
query: initial_obsvalue is not null | ||
variables: | ||
- name: receipt_time | ||
- name: receipt_date | ||
- name: initial_obsvalue | ||
- name: instrument_type | ||
- name: lat | ||
- name: lon | ||
- name: date | ||
- name: time | ||
- name: ops_obsgroup | ||
- name: varno | ||
- name: seqno |