Project

General

Profile

Temperature files for testing

Added by Jeisson Javier Leal Rojas about 1 year ago

Hi. I am looking for a temperature file that looks like this:

netcdf tavg {
dimensions:
        time = UNLIMITED ; // (50 currently)                                             #value here doesn't matter
        lon = 3600 ;                                                                     #value here doesn't matter
        lat = 1400 ;                                                                     #value here doesn't matter
variables:
        int time(time) ;
                time:standard_name = "time" ;
                time:units = "days since 2020-1-20 00:00:00" ;
                time:calendar = "proleptic_gregorian" ;
                time:axis = "T" ;
        double lon(lon) ;
                lon:standard_name = "longitude" ;
                lon:long_name = "longitude" ;
                lon:units = "degrees_east" ;
                lon:axis = "X" ;
        double lat(lat) ;
                lat:standard_name = "latitude" ;
                lat:long_name = "latitude" ;
                lat:units = "degrees_north" ;
                lat:axis = "Y" ;
        double tavg(time, lat, lon) ;
                tavg:standard_name = "tas" ;
                tavg:long_name = "temperature in 2m" ;
                tavg:units = "degC" ;

                tavg:cell_methods = "time: mean" ;

I just need to test some coding with temperature with variables `(time, lat, lon)` and I would appreciate if you can share some sources where I can get this data or if you have a file that you can share.

Regards,

Jeisson Leal.