Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5f5798e
initial check in
weiyuan-jiang May 8, 2025
872e40c
add more details
weiyuan-jiang May 13, 2025
be0d0f8
add grid_name from resolution
weiyuan-jiang May 15, 2025
6ea99d0
correct the EASE name
weiyuan-jiang May 20, 2025
3fba1a8
correct type and set Global to false
weiyuan-jiang May 22, 2025
0654b87
Merge branch 'develop' into feature/wjiang/ease_grid
weiyuan-jiang May 28, 2025
df1a67f
rename EASE_conv mod and name
weiyuan-jiang May 28, 2025
93cb4b1
Merge branch 'develop' into feature/wjiang/ease_grid
weiyuan-jiang Jun 2, 2025
23da0e5
Update base/MAPL_EASEConv.F90
weiyuan-jiang Jun 2, 2025
56d1fe4
Update base/MAPL_EASEConv.F90
weiyuan-jiang Jun 2, 2025
6009872
refactoring...
weiyuan-jiang Jun 3, 2025
70b532d
more refactoring...
weiyuan-jiang Jun 3, 2025
e21cd62
return to orignal number for zero-diff
weiyuan-jiang Jun 3, 2025
1e45f62
refactoring...
weiyuan-jiang Jun 3, 2025
0882f93
refactoring...
weiyuan-jiang Jun 3, 2025
0660267
correct documentation
weiyuan-jiang Jun 3, 2025
f9cafd6
refactoring...
weiyuan-jiang Jun 3, 2025
089eb17
Merge branch 'develop' into feature/wjiang/ease_grid
weiyuan-jiang Jun 10, 2025
a329a90
Merge branch 'develop' into feature/wjiang/ease_grid
mathomp4 Jun 12, 2025
cbb0e5b
minor fixes; added/clarified documentation/comments; intentional whit…
gmao-rreichle Jun 12, 2025
4292ae0
refactoring...
weiyuan-jiang Jun 13, 2025
91846fa
refactoring...
weiyuan-jiang Jun 13, 2025
f4ef9a3
fixed typo in error message (MAPL_EASEGridFactory.F90)
gmao-rreichle Jun 14, 2025
354690d
Merge branch 'develop' into feature/wjiang/ease_grid
gmao-rreichle Jun 14, 2025
6f5ed7c
Merge branch 'develop' into feature/wjiang/ease_grid
mathomp4 Jun 17, 2025
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added EASE grid Factory so the regridder can use it easily
- Added new option to History, if you specify xlevels instead of levels, it will perform extrapolation below the surface, using ECMWF formulas for height and temperature, otherwise use lowest model level
- Added `_USERRC` macro for use with ESMF commands that return both `rc` and `userrc`
- Swapped order of output dimensions for tarjectory and mask samplers. Now the leading dimension (Fortran convention) is level.
Expand Down
2 changes: 2 additions & 0 deletions base/Base.F90
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ module MAPLBase_Mod
use MAPL_RegridMethods
use MAPL_GridManagerMod
use MAPL_LatLonGridFactoryMod
use MAPL_EASEGridFactoryMod
use MAPL_CubedSphereGridFactoryMod
use MAPL_ExternalGridFactoryMod
use MAPL_ShmemMod
Expand All @@ -50,6 +51,7 @@ module MAPLBase_Mod
use MAPL_FileMetadataUtilsMod
use MAPL_VerticalDataMod
use MAPL_SphericalGeometry
use MAPL_EASEConversion
logical, save, private :: mapl_is_initialized = .false.

end module MAPLBase_Mod
2 changes: 2 additions & 0 deletions base/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ set (srcs
MAPL_XYGridFactory.F90
MAPL_NetCDF.F90 Plain_netCDF_Time.F90
MAPL_DateTime_Parsing_ESMF.F90 MAPL_ObsUtil.F90
MAPL_EASEConversion.F90
MAPL_EASEGridFactory.F90
# Orphaned program: should not be in this library.
# tstqsat.F90
)
Expand Down
Loading
Loading