Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 64e7d4f

Browse files
committedOct 11, 2024··
filter null ocean colour data
1 parent 0055788 commit 64e7d4f

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
 

‎CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ add_subdirectory( src )
6767

6868
add_subdirectory ( docs )
6969

70+
add_subdirectory ( share )
71+
7072
################################################################################
7173
# Export and summarize
7274

‎share/CMakeLists.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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()
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.