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

Breaking: Standardise cf standards and missingval handling #695

Merged
merged 43 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
ec02fd1
start adding cf keyword
rafaqz May 26, 2024
5f7bed4
add modifieddiskarray file
rafaqz Jul 12, 2024
8be3f25
use scale and offset keywords
rafaqz Jul 14, 2024
ded3eeb
bugfix
rafaqz Jul 14, 2024
9e6019c
bugfix
rafaqz Jul 14, 2024
53e167b
Merge branch 'main' into cf
rafaqz Jul 17, 2024
afe7920
updates
rafaqz Jul 20, 2024
967083c
create
rafaqz Jul 21, 2024
c8a3828
tweaks
rafaqz Aug 2, 2024
7a87d81
bugfixes
rafaqz Aug 10, 2024
a7d9b19
bugfix GRIB
rafaqz Aug 11, 2024
ee50b63
bugfixes
rafaqz Aug 13, 2024
1a0c0d6
add raw keyword
rafaqz Aug 13, 2024
ce3b152
clean up extensions
rafaqz Aug 13, 2024
329e92e
updates
rafaqz Aug 13, 2024
981dd69
mosaic fixes and standardisation
rafaqz Aug 13, 2024
b7e63f2
bugfixes
rafaqz Aug 15, 2024
1c20275
closured in create
rafaqz Aug 16, 2024
53b16e3
Merge branch 'main' into cf
rafaqz Aug 16, 2024
a034c60
bugfixes
rafaqz Aug 17, 2024
54056cb
fix resample test for nokw
rafaqz Aug 17, 2024
6a57727
test create with a function
rafaqz Aug 17, 2024
8500e42
Apply suggestions from code review
rafaqz Sep 3, 2024
c225840
Hook up scale and offset to Zarr datasets via CDM (#732)
asinghvi17 Sep 11, 2024
cfa1b95
use coalesceval instead of maskingval
rafaqz Sep 19, 2024
3d975e9
merge changes
rafaqz Sep 22, 2024
5f9be64
combine missingval and maskingval
rafaqz Sep 24, 2024
b2cb4b2
one missingval
rafaqz Dec 3, 2024
6a534da
Merge branch 'main' into cf
rafaqz Dec 8, 2024
821c640
fixes
rafaqz Dec 9, 2024
fdf4d30
fix mosaic
rafaqz Dec 10, 2024
29cf6c6
tweaks and bugfixes
rafaqz Dec 26, 2024
d4ea799
bugfix everything
rafaqz Jan 9, 2025
36a7391
Merge branch 'main' into cf
rafaqz Jan 9, 2025
f3e98ac
fix aqua
rafaqz Jan 9, 2025
0efbcb2
fix netcdf metadata
rafaqz Jan 11, 2025
1ead1ba
docs tweaks
rafaqz Jan 12, 2025
1f6d614
typo
rafaqz Jan 12, 2025
1a9c2cd
bugfix and tweak docs
rafaqz Jan 12, 2025
a60a809
fix extension doctests
rafaqz Jan 12, 2025
55f4f16
fix warp missingval
rafaqz Jan 12, 2025
87bae93
bugfix missingval tests
rafaqz Jan 12, 2025
1132988
remove ext
rafaqz Jan 12, 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
13 changes: 6 additions & 7 deletions ext/RastersArchGDALExt/RastersArchGDALExt.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
module RastersArchGDALExt

@static if isdefined(Base, :get_extension) # julia < 1.9
using Rasters, ArchGDAL
else
using ..Rasters, ..ArchGDAL
end
using Rasters
using ArchGDAL

import DiskArrays,
Extents,
Expand All @@ -16,15 +13,17 @@ using DimensionalData,

using Rasters.Lookups
using Rasters.Dimensions
using Rasters: GDALsource, AbstractProjected, RasterStackOrArray, FileArray, NoKW,
using Rasters: GDALsource, AbstractProjected, AbstractRaster, AbstractRasterStack,
RasterStackOrArray, FileArray, NoKW,
RES_KEYWORD, SIZE_KEYWORD, CRS_KEYWORD, FILENAME_KEYWORD, SUFFIX_KEYWORD, EXPERIMENTAL,
GDAL_EMPTY_TRANSFORM, GDAL_TOPLEFT_X, GDAL_WE_RES, GDAL_ROT1, GDAL_TOPLEFT_Y, GDAL_ROT2, GDAL_NS_RES,
_no_crs_error

import Rasters: reproject, resample, warp, nokw
import Rasters: reproject, resample, warp, cellsize, nokw, isnokw, isnokwornothing

import LinearAlgebra: dot, cross

const AG = ArchGDAL
const RA = Rasters
const AG = ArchGDAL
const DD = DimensionalData
Expand Down
Loading
Loading