Project

General

Profile

cdo ml2pl (Abort): Grids have different size!

Added by Prasanth Valayamkunnath almost 9 years ago

Hai CDO Help,

I'm Prasanth V, graduate student at VirginiaTech. I'm trying to convert MIROC5-CMIP5 data into WRF input grib format. I followed the steps from http://www.meteo.unican.es/wiki/cordexwrf/SoftwareTools/CmorPreprocessor
1.cdo invertlev ta_6hrLev_MIROC5_historical_r1i1p1_1990010100-1990013118.nc temp1.nc
2.cdo setzaxis,myzaxisinvert.dat temp1.nc temp2.nc I already created a myzaxisinvert.dat file
3.cdo delname,a_bnds,b_bnds,ps temp2.nc temp3.nc
4.export EXTRAPOLATE=1
5.cdo ml2pl,100000,97500,95000,92500,90000,87500,85000,82500,80000,77500,75000,70000,65000,60000,55000,50000,45000,40000,35000,30000,25000,22500,20000,17500,15000,12500,10000,7000,5000,3000 temp3.nc ta_Plev.nc

Now I'm getting this error with step 5

cdo ml2pl: Extrapolation of missing values enabled!
cdo ml2pl (Abort): Grids have different size!

Kindly help me

Thanks
prasanth
VirginiaTech


Replies (22)

RE: cdo ml2pl (Abort): Grids have different size! - Added by Uwe Schulzweida almost 9 years ago

You have to delete also the variables a and b.

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear CDO help,
How can I delete those variable?
Thanks
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear CDO help,

I tried to delete a, b variables by nco command

[pvk03@brlogin1 CMIP5]$ ncks -x -v a,b temp3.nc temp4.nc

But still I'm getting different error!! I did anything wrong?

[pvk03@brlogin1 CMIP5]$ cdo ml2pl,100000,97500,95000,92500,90000,87500,85000,82500,80000,77500,75000,70000,65000,60000,55000,
50000,45000,40000,35000,30000,25000,22500,20000,17500,15000,12500,10000,7000,5000,3000 temp4.nc ta_Plev.nc
cdo ml2pl (Warning): surface_geopotential not found - set to zero!

cdo ml2pl (Abort): surface_air_pressure not found!
----------------------------------------------------

Thanks
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

Hi,

From CDO docs: "To interpolate the temperature, the surface geopotential is also needed. The pressure, temperature, and surface geopotential are identified by their GRIB1 code number or netCDF CF standard name ..."

For more info please have a look at the ml2pl documentation: https://code.zmaw.de/projects/cdo/embedded/index.html#x1-5680002.12.5

Also, to detele variable/parameter, try delete or delname operator.

Cheers,
J

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear Jaison Thomas,

Still this is not working. Should I convert netcdf to grib format? I'm new to this.
Could you please share the procedure for converting MIROC5 CMIP5 to WRF format.

Kindly help me!

Any help will be greatly appreciated!

Thanks
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

In order to interpolate temperature to pressure levels, the input file should contain log. surface pressure or the surface pressure, and orography/surface geopotential. Your temp3.nc contains only temperature. I suggest you download the MIROC5-CMIP5 surface pressure and orography data and merge (use merge operator) those to temp3.nc (rename the variable names if necessary) and try ml2plx again.

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear Jaison Thomas

[pvk03@brlogin1 CMIP5]$ cdo invertlev ta_6hrLev_MIROC5_historical_r1i1p1_1990010100-1990013118.nc temp1.nc
Warning (cdfScanVarAttributes) : NetCDF: Variable not found - areacella
Warning (cdfScanVarAttributes) : NetCDF: Variable not found - areacella
  • glibc detected * cdo: double free or corruption (out): 0x0000000002560fe0 *
    Segmentation fault

What is the reason for this error?

Thanks
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

My guess is the error message is possibly due to the presence of variables which doesn't have any vertical levels (check with cdo sinfo or ncdump). Use selvar (or select,name=ta) to select the multilevel variable before using invertlev. For example,

cdo invertlev -selvar,ta ta_6hrLev_MIROC5_historical_r1i1p1_1990010100-1990013118.nc temp1.nc

May be Uwe/CDO gurus can help you with more info, so please upload the input file (or a link to download the file if it is too big to upload) and post the output of "cdo -V"

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear Jaison Thomas,

Here is the cdo -V output

[pvk03@brlogin1 pvk03]$ cdo -V
Climate Data Operators version 1.6.7 (https://code.zmaw.de/projects/cdo)
Compiled: by pvk03 on brlogin1 (x86_64-unknown-linux-gnu) May 17 2015 13:11:16
Compiler: icc -std=gnu99 -g -O2 -fopenmp
version: icc (ICC) 13.0.1 20121010
Features: PTHREADS OpenMP NC4 Z SSE2
Libraries:
Filetypes: srv ext ieg grb nc nc2 nc4 nc4c
CDI library version : 1.6.7 of May 17 2015 13:10:54
CGRIBEX library version : 1.7.0 of Dec 3 2014 08:52:12
netCDF library version : 4.2.1.1 of Oct 9 2013 10:21:35 $
SERVICE library version : 1.3.2 of May 17 2015 13:10:22
EXTRA library version : 1.3.2 of May 17 2015 13:10:09
IEG library version : 1.3.3 of May 17 2015 13:10:17
FILE library version : 1.8.2 of May 17 2015 13:10:10

File size is more than 50MB I couldn't upload it! I downloaded the data from http://pcmdi9.llnl.gov/esgf-web-fe

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

You don't have to upload the whole file/year data, just one time-step is enough for testing! Use "cdo -seltimestep,1 input_file.nc output_file.nc" and upload it. Also please upload orography/surface geopotential (it will be a small file) and surface pressure (just one time step)

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

Your file is working fine on my machine (cdo v1.6.7).

here is the original and inverted levels (below):

cdo zaxisdes ta_6hr.nc
#
# zaxisID 30
#
zaxistype = generic
size      = 40
name      = lev
longname  = hybrid sigma pressure coordinate
units     = 1
levels    = 0.997499228 0.99149853 0.982996941 0.971995592 0.958492994 0.941989779 
            0.922485769 0.900482535 0.875977039 0.848972499 0.81996733 0.786951005 
            0.746922851 0.698884845 0.642833292 0.57447207 0.501477659 0.436449826 
            0.379852325 0.330595523 0.287725121 0.250411421 0.217940167 0.189681277 
            0.165080354 0.14367269 0.125043333 0.108827628 0.0947157294 0.0824342594 
            0.0717448816 0.0624412112 0.054277733 0.0469373055 0.0401577391 0.0336126871 
            0.0265931804 0.0186132379 0.0106025441 0.00290465239 
bounds    = 1-0.995000005 0.995000005-0.987999976 0.987999976-0.977999985 0.977999985-0.966000021 
            0.966000021-0.950999975 0.950999975-0.933000028 0.933000028-0.912 0.912-0.888999999 
            0.888999999-0.862999976 0.862999976-0.834999979 0.834999979-0.805000007 
            0.805000007-0.768999994 0.768999994-0.725000024 0.725000024-0.672999978 
            0.672999978-0.612999976 0.612999976-0.536549985 0.536549985-0.46698001 
            0.46698001-0.406419992 0.406419992-0.353720009 0.353720009-0.307850003 
            0.307850003-0.267930001 0.267930001-0.233180001 0.233180001-0.202950001 
            0.202950001-0.176630005 0.176630005-0.153720006 0.153720006-0.133790001 
            0.133790001-0.116439998 0.116439998-0.101340003 0.101340003-0.0882000029 
            0.0882000029-0.0767629966 0.0767629966-0.0668089986 0.0668089986-0.0581450015 
            0.0581450015-0.0504750013 0.0504750013-0.0434620008 0.0434620008-0.036917001 
            0.036917001-0.0303840004 0.0303840004-0.0229269993 0.0229269993-0.0145260002 
            0.0145260002-0.00700000022 0.00700000022-0 
#
# zaxisID 31
#
zaxistype = surface
size      = 1
name      = sfc
longname  = surface
levels    = 0 
cdo zaxisdes: Processed 6 variables ( 0.01s )

And here is the inverted levels:

*cdo zaxisdes -invertlev ta_6hr.nc* 
cdo zaxisdes: Started child process "invertlev ta_6hr.nc (pipe1.1)".
#
# zaxisID 35
#
zaxistype = generic
size      = 40
name      = lev
longname  = hybrid sigma pressure coordinate
units     = 1
levels    = 0.00290465239 0.0106025441 0.0186132379 0.0265931804 0.0336126871 0.0401577391 
            0.0469373055 0.054277733 0.0624412112 0.0717448816 0.0824342594 0.0947157294 
            0.108827628 0.125043333 0.14367269 0.165080354 0.189681277 0.217940167 
            0.250411421 0.287725121 0.330595523 0.379852325 0.436449826 0.501477659 
            0.57447207 0.642833292 0.698884845 0.746922851 0.786951005 0.81996733 
            0.848972499 0.875977039 0.900482535 0.922485769 0.941989779 0.958492994 
            0.971995592 0.982996941 0.99149853 0.997499228 
bounds    = 0.00700000022-0 0.0145260002-0.00700000022 0.0229269993-0.0145260002 
            0.0303840004-0.0229269993 0.036917001-0.0303840004 0.0434620008-0.036917001 
            0.0504750013-0.0434620008 0.0581450015-0.0504750013 0.0668089986-0.0581450015 
            0.0767629966-0.0668089986 0.0882000029-0.0767629966 0.101340003-0.0882000029 
            0.116439998-0.101340003 0.133790001-0.116439998 0.153720006-0.133790001 
            0.176630005-0.153720006 0.202950001-0.176630005 0.233180001-0.202950001 
            0.267930001-0.233180001 0.307850003-0.267930001 0.353720009-0.307850003 
            0.406419992-0.353720009 0.46698001-0.406419992 0.536549985-0.46698001 
            0.612999976-0.536549985 0.672999978-0.612999976 0.725000024-0.672999978 
            0.768999994-0.725000024 0.805000007-0.768999994 0.834999979-0.805000007 
            0.862999976-0.834999979 0.888999999-0.862999976 0.912-0.888999999 0.933000028-0.912 
            0.950999975-0.933000028 0.966000021-0.950999975 0.977999985-0.966000021 
            0.987999976-0.977999985 0.995000005-0.987999976 1-0.995000005 
#
# zaxisID 31
#
zaxistype = surface
size      = 1
name      = sfc
longname  = surface
levels    = 0 
cdo(2) invertlev: Processed 1343728 values from 6 variables over 1 timestep ( 0.02s )
cdo zaxisdes: Processed 6 variables ( 0.02s )

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear Jaison Thomas,

Could you please share the commandline options and the supporting files with me?

Thank you
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Jaison-Thomas Ambadan almost 9 years ago

The commands are exactly same as above. I didn't use any additional files. The input file is one of the uploaded file "ta_6hr.nc".

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Ok Thank you very much for your kind response!
Prasanth

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Dear

I'm getting my ta_Plev.grb with wrong attributes. Could you please see the attributes of that file below,

Thanks
Prasanth

[pvk03@brlogin1 util]$ ./g1print.exe $WORK/HRLDAS/CMIP5/hus/ta_plev.grb
Copen: File = /work/blueridge/pvk03/HRLDAS/CMIP5/hus/ta_plev.grb
Fortran Unit = 0
UNIX File descriptor: 3

----------------------------------------------------
rec GRIB GRIB Lvl Lvl Lvl Time Fcst
Num Code name Code one two hour
----------------------------------------------------
1 11 100 0 2026-04-01_00:00 + 00
2 11 100
0 2026-04-01_00:00 + 00
3 11 100 0 2026-04-01_00:00 + 00
4 11 100
0 2026-04-01_00:00 + 00
5 11 100 0 2026-04-01_00:00 + 00
6 11 100
0 2026-04-01_00:00 + 00
7 11 100 0 2026-04-01_00:00 + 00
8 11 100
0 2026-04-01_00:00 + 00
9 11 100 0 2026-04-01_00:00 + 00
10 11 100
0 2026-04-01_00:00 + 00
11 11 100 9464 0 2026-04-01_00:00 + 00
12 11 100 4464 0 2026-04-01_00:00 + 00
13 11 100 0 2026-04-01_00:00 + 00
14 11 100
0 2026-04-01_00:00 + 00
15 11 100 0 2026-04-01_00:00 + 00
16 11 100
0 2026-04-01_00:00 + 00
17 11 100 0 2026-04-01_00:00 + 00
18 11 100
0 2026-04-01_00:00 + 00
19 11 100 0 2026-04-01_00:00 + 00
20 11 100
0 2026-04-01_00:00 + 00
21 11 100 0 2026-04-01_00:00 + 00
22 11 100
0 2026-04-01_00:00 + 00
23 11 100 0 2026-04-01_00:00 + 00
24 11 100
0 2026-04-01_00:00 + 00
25 11 100 0 2026-04-01_00:00 + 00
26 11 100
0 2026-04-01_00:00 + 00
27 11 100 0 2026-04-01_00:00 + 00
28 11 100 7000 0 2026-04-01_00:00 + 00
29 11 100 5000 0 2026-04-01_00:00 + 00
30 11 100 3000 0 2026-04-01_00:00 + 00
31 2 100 0 0 1850-01-01_00:00 +

32 11 100 *
0 2026-04-01_06:00 + 00
33 11 100
0 2026-04-01_06:00 + 00
34 11 100 0 2026-04-01_06:00 + 00
35 11 100
0 2026-04-01_06:00 + 00
36 11 100 0 2026-04-01_06:00 + 00
37 11 100
0 2026-04-01_06:00 + 00
38 11 100 0 2026-04-01_06:00 + 00
39 11 100
0 2026-04-01_06:00 + 00
40 11 100 0 2026-04-01_06:00 + 00
41 11 100
0 2026-04-01_06:00 + 00
42 11 100 9464 0 2026-04-01_06:00 + 00
43 11 100 4464 0 2026-04-01_06:00 + 00
44 11 100 0 2026-04-01_06:00 + 00
45 11 100
0 2026-04-01_06:00 + 00
46 11 100 0 2026-04-01_06:00 + 00
47 11 100
0 2026-04-01_06:00 + 00
48 11 100 0 2026-04-01_06:00 + 00
49 11 100
0 2026-04-01_06:00 + 00
50 11 100 0 2026-04-01_06:00 + 00
51 11 100
0 2026-04-01_06:00 + 00
52 11 100 0 2026-04-01_06:00 + 00
53 11 100
0 2026-04-01_06:00 + 00
54 11 100 0 2026-04-01_06:00 + 00
55 11 100
0 2026-04-01_06:00 + 00
56 11 100 0 2026-04-01_06:00 + 00
57 11 100
0 2026-04-01_06:00 + 00
58 11 100 0 2026-04-01_06:00 + 00
59 11 100 7000 0 2026-04-01_06:00 + 00
60 11 100 5000 0 2026-04-01_06:00 + 00
61 11 100 3000 0 2026-04-01_06:00 + 00
62 11 100
0 2026-04-01_12:00 + 00
63 11 100 0 2026-04-01_12:00 + 00
64 11 100
0 2026-04-01_12:00 + 00
65 11 100 0 2026-04-01_12:00 + 00
66 11 100
0 2026-04-01_12:00 + 00
67 11 100 0 2026-04-01_12:00 + 00
68 11 100
0 2026-04-01_12:00 + 00
69 11 100 0 2026-04-01_12:00 + 00
70 11 100
0 2026-04-01_12:00 + 00
71 11 100 0 2026-04-01_12:00 + 00
72 11 100 9464 0 2026-04-01_12:00 + 00
73 11 100 4464 0 2026-04-01_12:00 + 00
74 11 100
0 2026-04-01_12:00 + 00
75 11 100 0 2026-04-01_12:00 + 00
76 11 100
0 2026-04-01_12:00 + 00
77 11 100 0 2026-04-01_12:00 + 00
78 11 100
0 2026-04-01_12:00 + 00
79 11 100 0 2026-04-01_12:00 + 00
80 11 100
0 2026-04-01_12:00 + 00
81 11 100 0 2026-04-01_12:00 + 00
82 11 100
0 2026-04-01_12:00 + 00
83 11 100 0 2026-04-01_12:00 + 00
84 11 100
0 2026-04-01_12:00 + 00
85 11 100 0 2026-04-01_12:00 + 00
86 11 100
0 2026-04-01_12:00 + 00
87 11 100 0 2026-04-01_12:00 + 00
88 11 100
0 2026-04-01_12:00 + 00
89 11 100 7000 0 2026-04-01_12:00 + 00
90 11 100 5000 0 2026-04-01_12:00 + 00
91 11 100 3000 0 2026-04-01_12:00 + 00
92 11 100 0 2026-04-01_18:00 + 00
93 11 100
0 2026-04-01_18:00 + 00
94 11 100 0 2026-04-01_18:00 + 00
95 11 100
0 2026-04-01_18:00 + 00
96 11 100 0 2026-04-01_18:00 + 00
97 11 100
0 2026-04-01_18:00 + 00
98 11 100 0 2026-04-01_18:00 + 00
99 11 100
0 2026-04-01_18:00 + 00
100 11 100 0 2026-04-01_18:00 + 00
101 11 100
0 2026-04-01_18:00 + 00
102 11 100 9464 0 2026-04-01_18:00 + 00
103 11 100 4464 0 2026-04-01_18:00 + 00
104 11 100 0 2026-04-01_18:00 + 00
105 11 100
0 2026-04-01_18:00 + 00
106 11 100 0 2026-04-01_18:00 + 00
107 11 100
0 2026-04-01_18:00 + 00
108 11 100 0 2026-04-01_18:00 + 00
109 11 100
0 2026-04-01_18:00 + 00
110 11 100 0 2026-04-01_18:00 + 00
111 11 100
0 2026-04-01_18:00 + 00
112 11 100 0 2026-04-01_18:00 + 00
113 11 100
0 2026-04-01_18:00 + 00
114 11 100 0 2026-04-01_18:00 + 00
115 11 100
0 2026-04-01_18:00 + 00
116 11 100 0 2026-04-01_18:00 + 00
117 11 100
0 2026-04-01_18:00 + 00
118 11 100 0 2026-04-01_18:00 + 00
119 11 100 7000 0 2026-04-01_18:00 + 00
120 11 100 5000 0 2026-04-01_18:00 + 00
121 11 100 3000 0 2026-04-01_18:00 + 00
122 11 100
0 2026-04-02_00:00 + 00
123 11 100 0 2026-04-02_00:00 + 00
124 11 100
0 2026-04-02_00:00 + 00
125 11 100 0 2026-04-02_00:00 + 00
126 11 100
0 2026-04-02_00:00 + 00
127 11 100 0 2026-04-02_00:00 + 00
128 11 100
0 2026-04-02_00:00 + 00
129 11 100 0 2026-04-02_00:00 + 00
130 11 100
0 2026-04-02_00:00 + 00
131 11 100 0 2026-04-02_00:00 + 00
132 11 100 9464 0 2026-04-02_00:00 + 00
133 11 100 4464 0 2026-04-02_00:00 + 00
134 11 100
0 2026-04-02_00:00 + 00
135 11 100 0 2026-04-02_00:00 + 00
136 11 100
0 2026-04-02_00:00 + 00
137 11 100 0 2026-04-02_00:00 + 00
138 11 100
0 2026-04-02_00:00 + 00
139 11 100 0 2026-04-02_00:00 + 00
140 11 100
0 2026-04-02_00:00 + 00
141 11 100 0 2026-04-02_00:00 + 00
142 11 100
0 2026-04-02_00:00 + 00
143 11 100 0 2026-04-02_00:00 + 00
144 11 100
0 2026-04-02_00:00 + 00
145 11 100 0 2026-04-02_00:00 + 00
146 11 100
0 2026-04-02_00:00 + 00
147 11 100 0 2026-04-02_00:00 + 00
148 11 100
0 2026-04-02_00:00 + 00
149 11 100 7000 0 2026-04-02_00:00 + 00
150 11 100 5000 0 2026-04-02_00:00 + 00
151 11 100 3000 0 2026-04-02_00:00 + 00
152 11 100 0 2026-04-02_06:00 + 00
153 11 100
0 2026-04-02_06:00 + 00
154 11 100 0 2026-04-02_06:00 + 00
155 11 100
0 2026-04-02_06:00 + 00
156 11 100 0 2026-04-02_06:00 + 00
157 11 100
0 2026-04-02_06:00 + 00
158 11 100 0 2026-04-02_06:00 + 00
159 11 100
0 2026-04-02_06:00 + 00
160 11 100 0 2026-04-02_06:00 + 00
161 11 100
0 2026-04-02_06:00 + 00
162 11 100 9464 0 2026-04-02_06:00 + 00
163 11 100 4464 0 2026-04-02_06:00 + 00
164 11 100 0 2026-04-02_06:00 + 00
165 11 100
0 2026-04-02_06:00 + 00
166 11 100 0 2026-04-02_06:00 + 00
167 11 100
0 2026-04-02_06:00 + 00
168 11 100 0 2026-04-02_06:00 + 00
169 11 100
0 2026-04-02_06:00 + 00
170 11 100 0 2026-04-02_06:00 + 00
171 11 100
0 2026-04-02_06:00 + 00
172 11 100 0 2026-04-02_06:00 + 00
173 11 100
0 2026-04-02_06:00 + 00
174 11 100 0 2026-04-02_06:00 + 00
175 11 100
0 2026-04-02_06:00 + 00
176 11 100 0 2026-04-02_06:00 + 00
177 11 100
0 2026-04-02_06:00 + 00
178 11 100 0 2026-04-02_06:00 + 00
179 11 100 7000 0 2026-04-02_06:00 + 00
180 11 100 5000 0 2026-04-02_06:00 + 00
181 11 100 3000 0 2026-04-02_06:00 + 00
182 11 100
0 2026-04-02_12:00 + 00
183 11 100 0 2026-04-02_12:00 + 00
184 11 100
0 2026-04-02_12:00 + 00
185 11 100 0 2026-04-02_12:00 + 00
186 11 100
0 2026-04-02_12:00 + 00
187 11 100 0 2026-04-02_12:00 + 00
188 11 100
0 2026-04-02_12:00 + 00
189 11 100 0 2026-04-02_12:00 + 00
190 11 100
0 2026-04-02_12:00 + 00
191 11 100 0 2026-04-02_12:00 + 00
192 11 100 9464 0 2026-04-02_12:00 + 00
193 11 100 4464 0 2026-04-02_12:00 + 00
194 11 100
0 2026-04-02_12:00 + 00
195 11 100 0 2026-04-02_12:00 + 00
196 11 100
0 2026-04-02_12:00 + 00
197 11 100 0 2026-04-02_12:00 + 00
198 11 100
0 2026-04-02_12:00 + 00
199 11 100 0 2026-04-02_12:00 + 00
200 11 100
0 2026-04-02_12:00 + 00
201 11 100 0 2026-04-02_12:00 + 00
202 11 100
0 2026-04-02_12:00 + 00
203 11 100 0 2026-04-02_12:00 + 00
204 11 100
0 2026-04-02_12:00 + 00
205 11 100 0 2026-04-02_12:00 + 00
206 11 100
0 2026-04-02_12:00 + 00
207 11 100 0 2026-04-02_12:00 + 00
208 11 100
0 2026-04-02_12:00 + 00
209 11 100 7000 0 2026-04-02_12:00 + 00
210 11 100 5000 0 2026-04-02_12:00 + 00
211 11 100 3000 0 2026-04-02_12:00 + 00
212 11 100 0 2026-04-02_18:00 + 00
213 11 100
0 2026-04-02_18:00 + 00
214 11 100 0 2026-04-02_18:00 + 00
215 11 100
0 2026-04-02_18:00 + 00
216 11 100 0 2026-04-02_18:00 + 00
217 11 100
0 2026-04-02_18:00 + 00
218 11 100 0 2026-04-02_18:00 + 00
219 11 100
0 2026-04-02_18:00 + 00
220 11 100 0 2026-04-02_18:00 + 00
221 11 100
0 2026-04-02_18:00 + 00
222 11 100 9464 0 2026-04-02_18:00 + 00
223 11 100 4464 0 2026-04-02_18:00 + 00
224 11 100 0 2026-04-02_18:00 + 00
225 11 100
0 2026-04-02_18:00 + 00
226 11 100 0 2026-04-02_18:00 + 00
227 11 100
0 2026-04-02_18:00 + 00
228 11 100 0 2026-04-02_18:00 + 00
229 11 100
0 2026-04-02_18:00 + 00
230 11 100 0 2026-04-02_18:00 + 00
231 11 100
0 2026-04-02_18:00 + 00
232 11 100 0 2026-04-02_18:00 + 00
233 11 100
0 2026-04-02_18:00 + 00
234 11 100 0 2026-04-02_18:00 + 00
235 11 100
0 2026-04-02_18:00 + 00
236 11 100 0 2026-04-02_18:00 + 00
237 11 100
0 2026-04-02_18:00 + 00
238 11 100 0 2026-04-02_18:00 + 00
239 11 100 7000 0 2026-04-02_18:00 + 00
240 11 100 5000 0 2026-04-02_18:00 + 00
241 11 100 3000 0 2026-04-02_18:00 + 00
242 11 100
0 2026-04-03_00:00 + 00
243 11 100 0 2026-04-03_00:00 + 00
244 11 100
0 2026-04-03_00:00 + 00
245 11 100 0 2026-04-03_00:00 + 00
246 11 100
0 2026-04-03_00:00 + 00
247 11 100 0 2026-04-03_00:00 + 00
248 11 100
0 2026-04-03_00:00 + 00
249 11 100 0 2026-04-03_00:00 + 00
250 11 100
0 2026-04-03_00:00 + 00
251 11 100 0 2026-04-03_00:00 + 00
252 11 100 9464 0 2026-04-03_00:00 + 00
253 11 100 4464 0 2026-04-03_00:00 + 00
254 11 100
0 2026-04-03_00:00 + 00
255 11 100 0 2026-04-03_00:00 + 00
256 11 100
0 2026-04-03_00:00 + 00
257 11 100 0 2026-04-03_00:00 + 00
258 11 100
0 2026-04-03_00:00 + 00
259 11 100 0 2026-04-03_00:00 + 00
260 11 100
0 2026-04-03_00:00 + 00
261 11 100 0 2026-04-03_00:00 + 00
262 11 100
0 2026-04-03_00:00 + 00
263 11 100 0 2026-04-03_00:00 + 00
264 11 100
0 2026-04-03_00:00 + 00
265 11 100 0 2026-04-03_00:00 + 00
266 11 100
0 2026-04-03_00:00 + 00
267 11 100 0 2026-04-03_00:00 + 00
268 11 100
0 2026-04-03_00:00 + 00
269 11 100 7000 0 2026-04-03_00:00 + 00
270 11 100 5000 0 2026-04-03_00:00 + 00
271 11 100 3000 0 2026-04-03_00:00 + 00
272 11 100 0 2026-04-03_06:00 + 00
273 11 100
0 2026-04-03_06:00 + 00
274 11 100 0 2026-04-03_06:00 + 00
275 11 100
0 2026-04-03_06:00 + 00
276 11 100 0 2026-04-03_06:00 + 00
277 11 100
0 2026-04-03_06:00 + 00
278 11 100 0 2026-04-03_06:00 + 00
279 11 100
0 2026-04-03_06:00 + 00
280 11 100 0 2026-04-03_06:00 + 00
281 11 100
0 2026-04-03_06:00 + 00
282 11 100 9464 0 2026-04-03_06:00 + 00
283 11 100 4464 0 2026-04-03_06:00 + 00
284 11 100 0 2026-04-03_06:00 + 00
285 11 100
0 2026-04-03_06:00 + 00
286 11 100 0 2026-04-03_06:00 + 00
287 11 100
0 2026-04-03_06:00 + 00
288 11 100 0 2026-04-03_06:00 + 00
289 11 100
0 2026-04-03_06:00 + 00
290 11 100 0 2026-04-03_06:00 + 00
291 11 100
0 2026-04-03_06:00 + 00
292 11 100 0 2026-04-03_06:00 + 00
293 11 100
0 2026-04-03_06:00 + 00
294 11 100 0 2026-04-03_06:00 + 00
295 11 100
0 2026-04-03_06:00 + 00
296 11 100 0 2026-04-03_06:00 + 00
297 11 100
0 2026-04-03_06:00 + 00
298 11 100 0 2026-04-03_06:00 + 00
299 11 100 7000 0 2026-04-03_06:00 + 00
300 11 100 5000 0 2026-04-03_06:00 + 00
301 11 100 3000 0 2026-04-03_06:00 + 00
302 11 100
0 2026-04-03_12:00 + 00
303 11 100 0 2026-04-03_12:00 + 00
304 11 100
0 2026-04-03_12:00 + 00
305 11 100 0 2026-04-03_12:00 + 00
306 11 100
0 2026-04-03_12:00 + 00
307 11 100 0 2026-04-03_12:00 + 00
308 11 100
0 2026-04-03_12:00 + 00
309 11 100 0 2026-04-03_12:00 + 00
310 11 100
0 2026-04-03_12:00 + 00
311 11 100 0 2026-04-03_12:00 + 00
312 11 100 9464 0 2026-04-03_12:00 + 00
313 11 100 4464 0 2026-04-03_12:00 + 00
314 11 100
0 2026-04-03_12:00 + 00
315 11 100 0 2026-04-03_12:00 + 00
316 11 100
0 2026-04-03_12:00 + 00
317 11 100 0 2026-04-03_12:00 + 00
318 11 100
0 2026-04-03_12:00 + 00
319 11 100 0 2026-04-03_12:00 + 00
320 11 100
0 2026-04-03_12:00 + 00
321 11 100 0 2026-04-03_12:00 + 00
322 11 100
0 2026-04-03_12:00 + 00
323 11 100 0 2026-04-03_12:00 + 00
324 11 100
0 2026-04-03_12:00 + 00
325 11 100 0 2026-04-03_12:00 + 00
326 11 100
0 2026-04-03_12:00 + 00
327 11 100 0 2026-04-03_12:00 + 00
328 11 100
0 2026-04-03_12:00 + 00
329 11 100 7000 0 2026-04-03_12:00 + 00
330 11 100 5000 0 2026-04-03_12:00 + 00
331 11 100 3000 0 2026-04-03_12:00 + 00
332 11 100 0 2026-04-03_18:00 + 00
333 11 100
0 2026-04-03_18:00 + 00
334 11 100 0 2026-04-03_18:00 + 00
335 11 100
0 2026-04-03_18:00 + 00
336 11 100 0 2026-04-03_18:00 + 00
337 11 100
0 2026-04-03_18:00 + 00
338 11 100 0 2026-04-03_18:00 + 00
339 11 100
0 2026-04-03_18:00 + 00
340 11 100 0 2026-04-03_18:00 + 00
341 11 100
0 2026-04-03_18:00 + 00
342 11 100 9464 0 2026-04-03_18:00 + 00
343 11 100 4464 0 2026-04-03_18:00 + 00
344 11 100 0 2026-04-03_18:00 + 00
345 11 100
0 2026-04-03_18:00 + 00
346 11 100 0 2026-04-03_18:00 + 00
347 11 100
0 2026-04-03_18:00 + 00
348 11 100 0 2026-04-03_18:00 + 00
349 11 100
0 2026-04-03_18:00 + 00
350 11 100 0 2026-04-03_18:00 + 00
351 11 100
0 2026-04-03_18:00 + 00
352 11 100 0 2026-04-03_18:00 + 00
353 11 100
0 2026-04-03_18:00 + 00
354 11 100 0 2026-04-03_18:00 + 00
355 11 100
0 2026-04-03_18:00 + 00
356 11 100 0 2026-04-03_18:00 + 00
357 11 100
0 2026-04-03_18:00 + 00
358 11 100 0 2026-04-03_18:00 + 00
359 11 100 7000 0 2026-04-03_18:00 + 00
360 11 100 5000 0 2026-04-03_18:00 + 00
361 11 100 3000 0 2026-04-03_18:00 + 00
362 11 100
0 2026-04-04_00:00 + 00
363 11 100 0 2026-04-04_00:00 + 00
364 11 100
0 2026-04-04_00:00 + 00
365 11 100 0 2026-04-04_00:00 + 00
366 11 100
0 2026-04-04_00:00 + 00
367 11 100 0 2026-04-04_00:00 + 00
368 11 100
0 2026-04-04_00:00 + 00
369 11 100 0 2026-04-04_00:00 + 00
370 11 100
0 2026-04-04_00:00 + 00
371 11 100 0 2026-04-04_00:00 + 00
372 11 100 9464 0 2026-04-04_00:00 + 00
373 11 100 4464 0 2026-04-04_00:00 + 00
374 11 100
0 2026-04-04_00:00 + 00
375 11 100 0 2026-04-04_00:00 + 00
376 11 100
0 2026-04-04_00:00 + 00
377 11 100 0 2026-04-04_00:00 + 00
378 11 100
0 2026-04-04_00:00 + 00
379 11 100 0 2026-04-04_00:00 + 00
380 11 100
0 2026-04-04_00:00 + 00
381 11 100 0 2026-04-04_00:00 + 00
382 11 100
0 2026-04-04_00:00 + 00
383 11 100 0 2026-04-04_00:00 + 00
384 11 100
0 2026-04-04_00:00 + 00
385 11 100 0 2026-04-04_00:00 + 00
386 11 100
0 2026-04-04_00:00 + 00
387 11 100 0 2026-04-04_00:00 + 00
388 11 100
0 2026-04-04_00:00 + 00
389 11 100 7000 0 2026-04-04_00:00 + 00
390 11 100 5000 0 2026-04-04_00:00 + 00
391 11 100 3000 0 2026-04-04_00:00 + 00
392 11 100 0 2026-04-04_06:00 + 00
393 11 100
0 2026-04-04_06:00 + 00
394 11 100 0 2026-04-04_06:00 + 00
395 11 100
0 2026-04-04_06:00 + 00
396 11 100 0 2026-04-04_06:00 + 00
397 11 100
0 2026-04-04_06:00 + 00
398 11 100 0 2026-04-04_06:00 + 00
399 11 100
0 2026-04-04_06:00 + 00
400 11 100 0 2026-04-04_06:00 + 00
401 11 100
0 2026-04-04_06:00 + 00
402 11 100 9464 0 2026-04-04_06:00 + 00
403 11 100 4464 0 2026-04-04_06:00 + 00
404 11 100 0 2026-04-04_06:00 + 00
405 11 100
0 2026-04-04_06:00 + 00
406 11 100 0 2026-04-04_06:00 + 00
407 11 100
0 2026-04-04_06:00 + 00
408 11 100 0 2026-04-04_06:00 + 00
409 11 100
0 2026-04-04_06:00 + 00
410 11 100 0 2026-04-04_06:00 + 00
411 11 100
0 2026-04-04_06:00 + 00
412 11 100 0 2026-04-04_06:00 + 00
413 11 100
0 2026-04-04_06:00 + 00
414 11 100 0 2026-04-04_06:00 + 00
415 11 100
0 2026-04-04_06:00 + 00
416 11 100 0 2026-04-04_06:00 + 00
417 11 100
0 2026-04-04_06:00 + 00
418 11 100 0 2026-04-04_06:00 + 00
419 11 100 7000 0 2026-04-04_06:00 + 00
420 11 100 5000 0 2026-04-04_06:00 + 00
421 11 100 3000 0 2026-04-04_06:00 + 00
422 11 100
0 2026-04-04_12:00 + 00
423 11 100 0 2026-04-04_12:00 + 00
424 11 100
0 2026-04-04_12:00 + 00
425 11 100 0 2026-04-04_12:00 + 00
426 11 100
0 2026-04-04_12:00 + 00
427 11 100 0 2026-04-04_12:00 + 00
428 11 100
0 2026-04-04_12:00 + 00
429 11 100 0 2026-04-04_12:00 + 00
430 11 100
0 2026-04-04_12:00 + 00
431 11 100 0 2026-04-04_12:00 + 00
432 11 100 9464 0 2026-04-04_12:00 + 00
433 11 100 4464 0 2026-04-04_12:00 + 00
434 11 100
0 2026-04-04_12:00 + 00
435 11 100 0 2026-04-04_12:00 + 00
436 11 100
0 2026-04-04_12:00 + 00
437 11 100 0 2026-04-04_12:00 + 00
438 11 100
0 2026-04-04_12:00 + 00
439 11 100 0 2026-04-04_12:00 + 00
440 11 100
0 2026-04-04_12:00 + 00
441 11 100 0 2026-04-04_12:00 + 00
442 11 100
0 2026-04-04_12:00 + 00
443 11 100 0 2026-04-04_12:00 + 00
444 11 100
0 2026-04-04_12:00 + 00
445 11 100 0 2026-04-04_12:00 + 00
446 11 100
0 2026-04-04_12:00 + 00
447 11 100 0 2026-04-04_12:00 + 00
448 11 100
0 2026-04-04_12:00 + 00
449 11 100 7000 0 2026-04-04_12:00 + 00
450 11 100 5000 0 2026-04-04_12:00 + 00
451 11 100 3000 0 2026-04-04_12:00 + 00
452 11 100 0 2026-04-04_18:00 + 00
453 11 100
0 2026-04-04_18:00 + 00
454 11 100 0 2026-04-04_18:00 + 00
455 11 100
0 2026-04-04_18:00 + 00
456 11 100 0 2026-04-04_18:00 + 00
457 11 100
0 2026-04-04_18:00 + 00
458 11 100 0 2026-04-04_18:00 + 00
459 11 100
0 2026-04-04_18:00 + 00
460 11 100 0 2026-04-04_18:00 + 00
461 11 100
0 2026-04-04_18:00 + 00
462 11 100 9464 0 2026-04-04_18:00 + 00
463 11 100 4464 0 2026-04-04_18:00 + 00
464 11 100 0 2026-04-04_18:00 + 00
465 11 100
0 2026-04-04_18:00 + 00
466 11 100 0 2026-04-04_18:00 + 00
467 11 100
0 2026-04-04_18:00 + 00
468 11 100 0 2026-04-04_18:00 + 00
469 11 100
0 2026-04-04_18:00 + 00
470 11 100 0 2026-04-04_18:00 + 00
471 11 100
0 2026-04-04_18:00 + 00
472 11 100 0 2026-04-04_18:00 + 00
473 11 100
0 2026-04-04_18:00 + 00
474 11 100 0 2026-04-04_18:00 + 00
475 11 100
0 2026-04-04_18:00 + 00
476 11 100 0 2026-04-04_18:00 + 00
477 11 100
0 2026-04-04_18:00 + 00
478 11 100 0 2026-04-04_18:00 + 00
479 11 100 7000 0 2026-04-04_18:00 + 00
480 11 100 5000 0 2026-04-04_18:00 + 00
481 11 100 3000 0 2026-04-04_18:00 + 00
482 11 100
0 2026-04-05_00:00 + 00
483 11 100 0 2026-04-05_00:00 + 00
484 11 100
0 2026-04-05_00:00 + 00
485 11 100 0 2026-04-05_00:00 + 00
486 11 100
0 2026-04-05_00:00 + 00
487 11 100 0 2026-04-05_00:00 + 00
488 11 100
0 2026-04-05_00:00 + 00
489 11 100 0 2026-04-05_00:00 + 00
490 11 100
0 2026-04-05_00:00 + 00
491 11 100 0 2026-04-05_00:00 + 00
492 11 100 9464 0 2026-04-05_00:00 + 00
493 11 100 4464 0 2026-04-05_00:00 + 00
494 11 100
0 2026-04-05_00:00 + 00
495 11 100 0 2026-04-05_00:00 + 00
496 11 100
0 2026-04-05_00:00 + 00
497 11 100 0 2026-04-05_00:00 + 00
498 11 100
0 2026-04-05_00:00 + 00
499 11 100 0 2026-04-05_00:00 + 00
500 11 100
0 2026-04-05_00:00 + 00
501 11 100 0 2026-04-05_00:00 + 00
502 11 100
0 2026-04-05_00:00 + 00
503 11 100 0 2026-04-05_00:00 + 00
504 11 100
0 2026-04-05_00:00 + 00
505 11 100 0 2026-04-05_00:00 + 00
506 11 100
0 2026-04-05_00:00 + 00
507 11 100 0 2026-04-05_00:00 + 00
508 11 100
0 2026-04-05_00:00 + 00
509 11 100 7000 0 2026-04-05_00:00 + 00
510 11 100 5000 0 2026-04-05_00:00 + 00
511 11 100 3000 0 2026-04-05_00:00 + 00
512 11 100 0 2026-04-05_06:00 + 00
513 11 100
0 2026-04-05_06:00 + 00
514 11 100 0 2026-04-05_06:00 + 00
515 11 100
0 2026-04-05_06:00 + 00
516 11 100 0 2026-04-05_06:00 + 00
517 11 100
0 2026-04-05_06:00 + 00
518 11 100 0 2026-04-05_06:00 + 00
519 11 100
0 2026-04-05_06:00 + 00
520 11 100 0 2026-04-05_06:00 + 00
521 11 100
0 2026-04-05_06:00 + 00
522 11 100 9464 0 2026-04-05_06:00 + 00
523 11 100 4464 0 2026-04-05_06:00 + 00
524 11 100 0 2026-04-05_06:00 + 00
525 11 100
0 2026-04-05_06:00 + 00
526 11 100 0 2026-04-05_06:00 + 00
527 11 100
0 2026-04-05_06:00 + 00
528 11 100 0 2026-04-05_06:00 + 00
529 11 100
0 2026-04-05_06:00 + 00
530 11 100 0 2026-04-05_06:00 + 00
531 11 100
0 2026-04-05_06:00 + 00
532 11 100 0 2026-04-05_06:00 + 00
533 11 100
0 2026-04-05_06:00 + 00
534 11 100 0 2026-04-05_06:00 + 00
535 11 100
0 2026-04-05_06:00 + 00
536 11 100 0 2026-04-05_06:00 + 00
537 11 100
0 2026-04-05_06:00 + 00
538 11 100 0 2026-04-05_06:00 + 00
539 11 100 7000 0 2026-04-05_06:00 + 00
540 11 100 5000 0 2026-04-05_06:00 + 00
541 11 100 3000 0 2026-04-05_06:00 + 00
542 11 100
0 2026-04-05_12:00 + 00
543 11 100 0 2026-04-05_12:00 + 00
544 11 100
0 2026-04-05_12:00 + 00
545 11 100 0 2026-04-05_12:00 + 00
546 11 100
0 2026-04-05_12:00 + 00
547 11 100 0 2026-04-05_12:00 + 00
548 11 100
0 2026-04-05_12:00 + 00
549 11 100 0 2026-04-05_12:00 + 00
550 11 100
0 2026-04-05_12:00 + 00
551 11 100 0 2026-04-05_12:00 + 00
552 11 100 9464 0 2026-04-05_12:00 + 00
553 11 100 4464 0 2026-04-05_12:00 + 00
554 11 100
0 2026-04-05_12:00 + 00
555 11 100 0 2026-04-05_12:00 + 00
556 11 100
0 2026-04-05_12:00 + 00
557 11 100 0 2026-04-05_12:00 + 00
558 11 100
0 2026-04-05_12:00 + 00
559 11 100 0 2026-04-05_12:00 + 00
560 11 100
0 2026-04-05_12:00 + 00
561 11 100 0 2026-04-05_12:00 + 00
562 11 100
0 2026-04-05_12:00 + 00
563 11 100 0 2026-04-05_12:00 + 00
564 11 100
0 2026-04-05_12:00 + 00
565 11 100 0 2026-04-05_12:00 + 00
566 11 100
0 2026-04-05_12:00 + 00
567 11 100 0 2026-04-05_12:00 + 00
568 11 100
0 2026-04-05_12:00 + 00
569 11 100 7000 0 2026-04-05_12:00 + 00
570 11 100 5000 0 2026-04-05_12:00 + 00
571 11 100 3000 0 2026-04-05_12:00 + 00
572 11 100 0 2026-04-05_18:00 + 00
573 11 100
0 2026-04-05_18:00 + 00
574 11 100 0 2026-04-05_18:00 + 00
575 11 100
0 2026-04-05_18:00 + 00
576 11 100 0 2026-04-05_18:00 + 00
577 11 100
0 2026-04-05_18:00 + 00
578 11 100 0 2026-04-05_18:00 + 00
579 11 100
0 2026-04-05_18:00 + 00
580 11 100 0 2026-04-05_18:00 + 00
581 11 100
0 2026-04-05_18:00 + 00
582 11 100 9464 0 2026-04-05_18:00 + 00
583 11 100 4464 0 2026-04-05_18:00 + 00
584 11 100 0 2026-04-05_18:00 + 00
585 11 100
0 2026-04-05_18:00 + 00
586 11 100 0 2026-04-05_18:00 + 00
587 11 100
0 2026-04-05_18:00 + 00
588 11 100 0 2026-04-05_18:00 + 00
589 11 100
0 2026-04-05_18:00 + 00
590 11 100 0 2026-04-05_18:00 + 00
591 11 100
0 2026-04-05_18:00 + 00
592 11 100 0 2026-04-05_18:00 + 00
593 11 100
0 2026-04-05_18:00 + 00
594 11 100 0 2026-04-05_18:00 + 00
595 11 100
0 2026-04-05_18:00 + 00
596 11 100 0 2026-04-05_18:00 + 00
597 11 100
0 2026-04-05_18:00 + 00
598 11 100 0 2026-04-05_18:00 + 00
599 11 100 7000 0 2026-04-05_18:00 + 00
600 11 100 5000 0 2026-04-05_18:00 + 00
601 11 100 3000 0 2026-04-05_18:00 + 00
602 11 100
0 2026-04-06_00:00 + 00
603 11 100 0 2026-04-06_00:00 + 00
604 11 100
0 2026-04-06_00:00 + 00
605 11 100 0 2026-04-06_00:00 + 00
606 11 100
0 2026-04-06_00:00 + 00
607 11 100 0 2026-04-06_00:00 + 00
608 11 100
0 2026-04-06_00:00 + 00
609 11 100 0 2026-04-06_00:00 + 00
610 11 100
0 2026-04-06_00:00 + 00
611 11 100 0 2026-04-06_00:00 + 00
612 11 100 9464 0 2026-04-06_00:00 + 00
613 11 100 4464 0 2026-04-06_00:00 + 00
614 11 100
0 2026-04-06_00:00 + 00
615 11 100 0 2026-04-06_00:00 + 00
616 11 100
0 2026-04-06_00:00 + 00
617 11 100 0 2026-04-06_00:00 + 00
618 11 100
0 2026-04-06_00:00 + 00
619 11 100 0 2026-04-06_00:00 + 00
620 11 100
0 2026-04-06_00:00 + 00
621 11 100 0 2026-04-06_00:00 + 00
622 11 100
0 2026-04-06_00:00 + 00
623 11 100 0 2026-04-06_00:00 + 00
624 11 100
0 2026-04-06_00:00 + 00
625 11 100 0 2026-04-06_00:00 + 00
626 11 100
0 2026-04-06_00:00 + 00
627 11 100 0 2026-04-06_00:00 + 00
628 11 100
0 2026-04-06_00:00 + 00
629 11 100 7000 0 2026-04-06_00:00 + 00
630 11 100 5000 0 2026-04-06_00:00 + 00
631 11 100 3000 0 2026-04-06_00:00 + 00
632 11 100 0 2026-04-06_06:00 + 00
633 11 100
0 2026-04-06_06:00 + 00
634 11 100 0 2026-04-06_06:00 + 00
635 11 100
0 2026-04-06_06:00 + 00
636 11 100 0 2026-04-06_06:00 + 00
637 11 100
0 2026-04-06_06:00 + 00
638 11 100 0 2026-04-06_06:00 + 00
639 11 100
0 2026-04-06_06:00 + 00
640 11 100 0 2026-04-06_06:00 + 00
641 11 100
0 2026-04-06_06:00 + 00
642 11 100 9464 0 2026-04-06_06:00 + 00
643 11 100 4464 0 2026-04-06_06:00 + 00
644 11 100 0 2026-04-06_06:00 + 00
645 11 100
0 2026-04-06_06:00 + 00
646 11 100 0 2026-04-06_06:00 + 00
647 11 100
0 2026-04-06_06:00 + 00
648 11 100 0 2026-04-06_06:00 + 00
649 11 100
0 2026-04-06_06:00 + 00
650 11 100 0 2026-04-06_06:00 + 00
651 11 100
0 2026-04-06_06:00 + 00
652 11 100 0 2026-04-06_06:00 + 00
653 11 100
0 2026-04-06_06:00 + 00
654 11 100 0 2026-04-06_06:00 + 00
655 11 100
0 2026-04-06_06:00 + 00
656 11 100 0 2026-04-06_06:00 + 00
657 11 100
0 2026-04-06_06:00 + 00
658 11 100 0 2026-04-06_06:00 + 00
659 11 100 7000 0 2026-04-06_06:00 + 00
660 11 100 5000 0 2026-04-06_06:00 + 00
661 11 100 3000 0 2026-04-06_06:00 + 00
662 11 100
0 2026-04-06_12:00 + 00
663 11 100 0 2026-04-06_12:00 + 00
664 11 100
0 2026-04-06_12:00 + 00
665 11 100 0 2026-04-06_12:00 + 00
666 11 100
0 2026-04-06_12:00 + 00
667 11 100 0 2026-04-06_12:00 + 00
668 11 100
0 2026-04-06_12:00 + 00
669 11 100 0 2026-04-06_12:00 + 00
670 11 100
0 2026-04-06_12:00 + 00
671 11 100 0 2026-04-06_12:00 + 00
672 11 100 9464 0 2026-04-06_12:00 + 00
673 11 100 4464 0 2026-04-06_12:00 + 00
674 11 100
0 2026-04-06_12:00 + 00
675 11 100 0 2026-04-06_12:00 + 00
676 11 100
0 2026-04-06_12:00 + 00
677 11 100 0 2026-04-06_12:00 + 00
678 11 100
0 2026-04-06_12:00 + 00
679 11 100 0 2026-04-06_12:00 + 00
680 11 100
0 2026-04-06_12:00 + 00
681 11 100 0 2026-04-06_12:00 + 00
682 11 100
0 2026-04-06_12:00 + 00
683 11 100 0 2026-04-06_12:00 + 00
684 11 100
0 2026-04-06_12:00 + 00
685 11 100 0 2026-04-06_12:00 + 00
686 11 100
0 2026-04-06_12:00 + 00
687 11 100 0 2026-04-06_12:00 + 00
688 11 100
0 2026-04-06_12:00 + 00
689 11 100 7000 0 2026-04-06_12:00 + 00
690 11 100 5000 0 2026-04-06_12:00 + 00
691 11 100 3000 0 2026-04-06_12:00 + 00
692 11 100 0 2026-04-06_18:00 + 00
693 11 100
0 2026-04-06_18:00 + 00
694 11 100 0 2026-04-06_18:00 + 00
695 11 100
0 2026-04-06_18:00 + 00
696 11 100 0 2026-04-06_18:00 + 00
697 11 100
0 2026-04-06_18:00 + 00
698 11 100 0 2026-04-06_18:00 + 00
699 11 100
0 2026-04-06_18:00 + 00
700 11 100 0 2026-04-06_18:00 + 00
701 11 100
0 2026-04-06_18:00 + 00
702 11 100 9464 0 2026-04-06_18:00 + 00
703 11 100 4464 0 2026-04-06_18:00 + 00
704 11 100 0 2026-04-06_18:00 + 00
705 11 100
0 2026-04-06_18:00 + 00
706 11 100 0 2026-04-06_18:00 + 00
707 11 100
0 2026-04-06_18:00 + 00
708 11 100 0 2026-04-06_18:00 + 00
709 11 100
0 2026-04-06_18:00 + 00
710 11 100 0 2026-04-06_18:00 + 00
711 11 100
0 2026-04-06_18:00 + 00
712 11 100 0 2026-04-06_18:00 + 00
713 11 100
0 2026-04-06_18:00 + 00
714 11 100 0 2026-04-06_18:00 + 00
715 11 100
0 2026-04-06_18:00 + 00
716 11 100 ** 0 2026-04-06_18:00 + 00

RE: cdo ml2pl (Abort): Grids have different size! - Added by Prasanth Valayamkunnath almost 9 years ago

Sorry about the above message kindly find the attached file.

RE: cdo ml2pl (Abort): Grids have different size! - Added by Matilde García-Valdecasas Ojeda almost 9 years ago

Hello Prasanth,

I am Matilde, graduate student at University of Granada. I'm trying to convert MIROC5-CMIP5 data into WRF input grib format. I also followed the steps from http://www.meteo.unican.es/wiki/cordexwrf/SoftwareTools/CmorPreprocessor but I don't know to do "myzaxisinvert.dat". Can you help me, please? I'm trying with zaxisdes but I don't understand well what i do

RE: cdo ml2pl (Abort): Grids have different size! - Added by Luke Davis over 6 years ago

Prasanth Valayamkunnath wrote:

Dear CDO help,

I tried to delete a, b variables by nco command

[pvk03@brlogin1 CMIP5]$ ncks -x -v a,b temp3.nc temp4.nc

But still I'm getting different error!! I did anything wrong?

[pvk03@brlogin1 CMIP5]$ cdo ml2pl,100000,97500,95000,92500,90000,87500,85000,82500,80000,77500,75000,70000,65000,60000,55000,
50000,45000,40000,35000,30000,25000,22500,20000,17500,15000,12500,10000,7000,5000,3000 temp4.nc ta_Plev.nc
cdo ml2pl (Warning): surface_geopotential not found - set to zero!

cdo ml2pl (Abort): surface_air_pressure not found!
----------------------------------------------------

Thanks
Prasanth

For future readers of this thread:

I was also getting the "Surface pressure not found" error, but the solution turned out to be very, very simple! CDO just checks for a "standard_name" attribute matching the CF convention "surface_air_pressure". So, all you have to do is add this attribute to your surface pressure variable.

With NCO's "ncatted" tool, and with sea level pressure denoted by the variable "slp", this is done as follows:

ncatted -O -a standard_name,slp,c,c,"surface_air_pressure" <file>

RE: cdo ml2pl (Abort): Grids have different size! - Added by Karin Meier-Fleischer over 6 years ago

You can change the variable attributes with CDO, too. Use the CDO setattribute operator:

cdo setattribute,slp@standard_name=surface_air_pressure infile outfile

-Karin

    (1-22/22)