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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
version:
- '1.10'
- '1.11'
- 'nightly'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ClimaUtilities"
uuid = "b3f4f4ca-9299-4f7f-bd9b-81e1242a7513"
authors = ["Gabriele Bozzola <[email protected]>", "Julia Sloan <[email protected]>", "Kevin Phan <[email protected]>"]
version = "0.1.25"
version = "0.1.26"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand Down
1 change: 0 additions & 1 deletion ext/InterpolationsRegridderExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ function Regridders.regrid(regridder::InterpolationsRegridder, data, dimensions)
) &&
length(dimensions) == 2

@warn "Regridding 2D data onto a 2D space with LatLongZ coordinates."
coords = map(regridder.coordinates) do coord
ClimaCore.Geometry.LatLongPoint(coord.lat, coord.long)
end
Expand Down
9 changes: 0 additions & 9 deletions test/regridders.jl
Original file line number Diff line number Diff line change
Expand Up @@ -301,15 +301,6 @@ end
check_lon_error(coordinates.long, regridded_lon_3d)

# 2D data
@test_logs (
:warn,
"Regridding 2D data onto a 2D space with LatLongZ coordinates.",
) Regridders.regrid(reg_2d, data_lat2D, dimensions2D)
@test_logs (
:warn,
"Regridding 2D data onto a 2D space with LatLongZ coordinates.",
) Regridders.regrid(reg_2d, data_lon2D, dimensions2D)

regridded_lat_2d = Regridders.regrid(reg_2d, data_lat2D, dimensions2D)
regridded_lon_2d = Regridders.regrid(reg_2d, data_lon2D, dimensions2D)

Expand Down
Loading