Giter Club home page Giter Club logo

Comments (4)

coroa avatar coroa commented on May 25, 2024

Hi tim,

thanks for the heads-up. Turns out the problem is introduced on the CDS side, since it also appears for the actual request atlite is sending:

import cdsapi
import xarray as xr

product = 'reanalysis-era5-single-levels'
request = {'product_type': 'reanalysis',
           'format': 'netcdf',
           'day': ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10',
                   '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21',
                   '22', '23', '24', '25', ' 26', '27', '28', '29', '30', '31'],
           'time': ['00:00', '01:00', '02:00', '03:00', '04:00', '05:00',
                    '06:00', '07:00', '08:00', '09:00', '10:00', '11:00', '12:00',
                    '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00',
                    '20:00', '21:00', '22:00', '23:00'],
           'area': [71.0, -10.5, 34.5, 34.5],
           'year': 2016,
           'month': 1,
           'variable': ['100m_u_component_of_wind',
                        '100m_v_component_of_wind',
                        '2m_temperature',
                        'runoff',
                        'soil_temperature_level_4',
                        'surface_net_solar_radiation',
                        'surface_pressure',
                        'surface_solar_radiation_downwards',
                        'toa_incident_solar_radiation',
                        'total_sky_direct_solar_radiation_at_surface']}

result = cdsapi.Client().retrieve(
    product,
    request
)

result.download("test.nc")

ds = xr.open_dataset("test.nc")
ds['ro'].to_series().describe()

## Returns
#
# count    1.979561e+07
# mean     1.617490e-05
# std      6.164426e-05
# min     -4.656613e-10
# 25%     -4.656613e-10
# 50%      3.972091e-07
# 75%      1.391862e-05
# max      1.303101e-02
# Name: ro, dtype: float64

The problem vanishes if I restrict my request to a single day instead of a month. Testing the exact circumstances is difficult, since the queuing time for requests is in the order of 15min.

I'll introduce a clip(min=0.) as a workaround!

from atlite.

timtroendle avatar timtroendle commented on May 25, 2024

Oh wow, that's nasty! I always tried with one day only and so didn't recognise it was stemming from CDS.

Your workaround sounds good to me. Thanks a lot!

from atlite.

timtroendle avatar timtroendle commented on May 25, 2024

I discussed this issue with CDS support and was told that it cannot be avoided in their current processing. So I'd assume your workaround is the best one can do.

from atlite.

coroa avatar coroa commented on May 25, 2024

Thanks for the feedback!

from atlite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.