Skip to content
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Replace `use mapl3g_GridGet` with `use MAPL` in `GEOS_Shared/OVP.F90`;
`MAPL_GridGetCoordinates` is now accessed through the MAPL umbrella module
following the Phase 9 `mapl3g_` → `mapl_` rename in MAPL (#437)
- Remove `MAPL2` from `GEOS_Shared` CMake dependencies; replace with `MAPL` (#435)
- Migrate `GEOS_Shared/windfix.F90` from `use mapl_MaplGrid` to `use MAPL` for `mapl_GridGetGlobalCellCountPerDim`; `DIMS` made allocatable (MAPL#4875)
- Migrate `GEOS_Shared/windfix.F90` from `use MAPL2, only: MAPL_GridGet` to `use mapl_MaplGrid, only: MAPL_GridGet` (MAPL#4857)
Expand Down
3 changes: 1 addition & 2 deletions GEOS_Shared/OVP.F90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ module OVP
use ESMF
use MAPL
use MAPL_PackedTimeMod, only: MAPL_PackedTimeCreate => PackedTimeCreate
use mapl3g_GridGet, only: GridGetCoordinates

implicit none
private
Expand Down Expand Up @@ -117,7 +116,7 @@ subroutine OVP_init ( GC, GC_DT_LABEL, LONS, RUN_DT, GC_DT, RC )

call MAPL_GridCompGet(GC, grid=grid, _RC)

call GridGetCoordinates(grid, LONS, lats, _RC) ! Get LONS
call mapl_GridGetCoordinates(grid, LONS, lats, _RC) ! Get LONS

call ESMF_GridCompGet ( GC, CONFIG=CF, __RC__ ) ! Get Config

Expand Down
Loading