Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added MASKFILE for time-discontinuous data for TEM diagnostics #89

Merged
merged 3 commits into from
Jul 30, 2024
Merged
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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.1.1] - 2024-07-26
## [2.1.2] - 2024-07-30

### Changed

- Added MASKFILE for time-discontinuous data in TEM diagnostics

## [2.1.1] - 2024-07-30

### Added

- MOM6 C90 ogrid option to `remap_utils.py`

### Fixed

Expand Down
18 changes: 18 additions & 0 deletions plots/grads_util/fsource
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/csh -f

set base = `/bin/basename $1`
@ n = 1
set source = ''
set dummy = `echo $1 | cut -d / -f$n`
while( .$dummy != .$base )
set source = ${source}/${dummy}
@ n = $n + 1
set dummy = `echo $1 | cut -d / -f$n`
end
echo SOURCE: $source

if( -e FSOURCE.txt ) then
/bin/rm FSOURCE.txt
endif
echo $source > FSOURCE.txt
exit
Loading
Loading