You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
I want to ask about setting a band name while creating a GeoTIFF.
In Python, I would use setdescription(). However, this function does not exist on the list of methods.
But there is setcategorynames!. Is it a proper one?
ERROR: MethodError: no method matching setcategorynames!(::ArchGDAL.IRasterBand{Float32}, ::String)
Closest candidates are:
setcategorynames!(::T, ::Vector{String}) where T<:ArchGDAL.AbstractRasterBand
@ ArchGDAL C:\Users\monikat\.julia\packages\ArchGDAL\xZUPv\src\raster\rasterband.jl:474
And the error says that my "band" is ArchGDAL.IRasterBand{Float32}, while in setnodatavalue! that has the same input type requirement, there is no problem?
Unless setcategorynames! is the wrong function for it?
What do I miss here?
Sorry if this is trivial!
Thanks:)
The text was updated successfully, but these errors were encountered:
Hello!
I want to ask about setting a band name while creating a GeoTIFF.
In Python, I would use setdescription(). However, this function does not exist on the list of methods.
But there is
setcategorynames!
. Is it a proper one?gives me an error:
And the error says that my "band" is ArchGDAL.IRasterBand{Float32}, while in setnodatavalue! that has the same input type requirement, there is no problem?
Unless setcategorynames! is the wrong function for it?
What do I miss here?
Sorry if this is trivial!
Thanks:)
The text was updated successfully, but these errors were encountered: