We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am trying to read data from ERA5 data with the package https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=overview The file is 300 MB so I have not attached it here.
I get this error. ERROR: MethodError: no method matching from_grib_date_time(::Int32, ::Int32; epoch::Dates.DateTime)
ERROR: MethodError: no method matching from_grib_date_time(::Int32, ::Int32; epoch::Dates.DateTime)
I can see that the function is definite
from_grib_date_time(date::Int, time::Int; epoch::DateTime=DEFAULT_EPOCH)::Int
but looking at the code I think the more generic Integer type should be used instead.
from_grib_date_time(date::Integer , time::Integer ; epoch::DateTime=DEFAULT_EPOCH)::Integer
The text was updated successfully, but these errors were encountered:
solved by #26
Sorry, something went wrong.
No branches or pull requests
I am trying to read data from ERA5 data with the package https://cds.climate.copernicus.eu/cdsapp#!/dataset/reanalysis-era5-single-levels?tab=overview
The file is 300 MB so I have not attached it here.
I get this error.
ERROR: MethodError: no method matching from_grib_date_time(::Int32, ::Int32; epoch::Dates.DateTime)
I can see that the function is definite
but looking at the code I think the more generic Integer type should be used instead.
The text was updated successfully, but these errors were encountered: