Skip to content

Errors in MET #2646

Closed Locked Answered by JohnHalleyGotway
Kuriyama2000 asked this question in Configuration
Discussion options

You must be logged in to vote

Hi, I see you have a question about configuring Grid-Stat. Thanks for sending along the details of your NetCDF file and config file entries. Grid-Stat is designed to be run once per output time. Your data has 3 dimensions: time, latitude, and longitude:

short t2m(time, latitude, longitude) ;

As the error message states, you should have exactly two * characters to in the level string in the slots for the lat/lon dimensions.

name = "t2m";
level = ["(0,*,*)" ];

In this example, I just put a 0 for the first dimension. That means just use data for the first time slice. Although I see that you have 2208 time slices in this file (time = 2208 ;). Instead of specifying an integer index into that…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jprestop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment