Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@
| cjohnson-pi | Christine Johnson | Met Office | 2026-01-19 |
| t00sa | Sam Clarke-Green | Met Office | 2026-01-20 |
| ukmo-juan-castillo | Juan M. Castillo | Met Office | 2026-01-23 |
| thomasmelvin | Thomas Melvin | Met Office | 2026-01-15 |
| thomasmelvin | Thomas Melvin | Met Office | 2026-01-15 |
| tinyendian | Wolfgang Hayek | Earth Sciences New Zealand | 2026-01-16 |
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,9 @@ contains
end if

else
if ( present(lowest_order_flag) .and. lowest_order_flag ) then
recovery_order_arg = recovery_order_constant
else
recovery_order_arg = recovery_order
recovery_order_arg = recovery_order
if (present(lowest_order_flag)) then
if (lowest_order_flag) recovery_order_arg = recovery_order_constant
end if
if (ndata > 1) then
if (present(source_mask)) then
Expand Down