-
Notifications
You must be signed in to change notification settings - Fork 6
Make AbstractVariable a subtype of AbstractDiskArray #35
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
base: main
Are you sure you want to change the base?
Changes from all commits
81f24cd
a30bf71
2e06265
7c382b8
0321c61
c6cb2f0
f9df8eb
1edfc96
7232d96
1472682
5159cb7
e9f6418
ef58671
f47f24b
a03812e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,13 @@ keywords = ["netcdf", "GRIB", "climate and forecast conventions", "oceanography" | |
license = "MIT" | ||
desc = "CommonDataModel is a module that defines types common to NetCDF and GRIB data" | ||
authors = ["Alexander Barth <[email protected]>"] | ||
version = "0.3.9" | ||
version = "0.4.0" | ||
|
||
[deps] | ||
CFTime = "179af706-886a-5703-950a-314cd64e0468" | ||
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
DiskArrays = "3c3547ce-8d99-4f5e-a174-61eb10b00ae3" | ||
Preferences = "21216c6a-2e73-6563-6e65-726566657250" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
|
@@ -18,6 +19,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | |
CFTime = "0.1.1, 0.2" | ||
DataStructures = "0.17, 0.18" | ||
Dates = "1" | ||
DiskArrays = "0.4.15" | ||
Preferences = "1.3" | ||
Printf = "1" | ||
Statistics = "1" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -279,7 +279,7 @@ function Base.broadcasted(::GroupedVariableStyle,f::Function,A::GroupedVariable{ | |
A.v,A.coordname,A.group_fun,A.groupmap,A.dim,map_fun) | ||
end | ||
|
||
function GroupedVariable(v::TV,coordname,group_fun::TF,groupmap,dim,map_fun::TM) where TV <: AbstractVariable where {TF,TM} | ||
function GroupedVariable(v::TV,coordname,group_fun::TF,groupmap,dim,map_fun::TM) where TV <: Union{AbstractVariable,SubVariable} where {TF,TM} | ||
TGM = typeof(groupmap) | ||
|
||
#TG = Base.return_types(selectdim,(TV,Int,Int,))[1] | ||
|
@@ -361,7 +361,7 @@ close(ds) | |
``` | ||
|
||
""" | ||
function groupby(v::AbstractVariable,(coordname,group_fun)::Pair{<:SymbolOrString,TF}) where TF | ||
function groupby(v::Union{AbstractVariable,SubVariable},(coordname,group_fun)::Pair{<:SymbolOrString,TF}) where TF | ||
# for NCDatasets 0.12 | ||
c = v[String(coordname)][:] | ||
class = group_fun.(c) | ||
|
@@ -462,6 +462,9 @@ Base.BroadcastStyle(::Type{<:ReducedGroupedVariable}) = ReducedGroupedVariableSt | |
Base.BroadcastStyle(::DefaultArrayStyle,::ReducedGroupedVariableStyle) = ReducedGroupedVariableStyle() | ||
Base.BroadcastStyle(::ReducedGroupedVariableStyle,::DefaultArrayStyle) = ReducedGroupedVariableStyle() | ||
|
||
Base.BroadcastStyle(::DiskArrays.ChunkStyle,::ReducedGroupedVariableStyle) = ReducedGroupedVariableStyle() | ||
Base.BroadcastStyle(::ReducedGroupedVariableStyle,::DiskArrays.ChunkStyle) = ReducedGroupedVariableStyle() | ||
|
||
function Base.similar(bc::Broadcasted{ReducedGroupedVariableStyle}, ::Type{ElType}) where ElType | ||
# Scan the inputs for the ReducedGroupedVariable: | ||
A = find_gv(ReducedGroupedVariable,bc) | ||
|
@@ -587,3 +590,16 @@ function dataset(gr::ReducedGroupedVariable) | |
gr.reduce_fun, | ||
) | ||
end | ||
|
||
# ReducedGroupedVariable is a Variable and therefore an AbstractDiskArray. | ||
# getindex is overloaded for ReducedGroupedVariable and therefore | ||
# ReducedGroupedVariable is defined to use getindex. | ||
# An alternative solution is to remove getindex definitions | ||
# and then implement the read logic in readblock! | ||
function DiskArrays.readblock!(gr::ReducedGroupedVariable{T,N}, | ||
aout, | ||
indexes::Vararg{OrdinalRange, N}) where {T,N} | ||
|
||
aout .= Base.getindex(gr,indexes...) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Currently |
||
return aout | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ReducedGroupedVariable
use different broadcasting thanDiskArrays
. This might lead to some confusion.