HRRR data from NOMADS not showing up in xarray.DataArray #3781
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Hi @MattLwx7, thanks for sharing your code snippet. Can you describe what calculations you're trying to perform on the data? When I use your code, I get the data shown in the attached image. Note the white shading in this image are missing data values, or "nan" as shown when you do |
Beta Was this translation helpful? Give feedback.





OK that's great- that means you probably have LCL values everywhere there's model data (see image above). Can you also try:
np.nanmin(lclheight)just to make sure? I think everything is OK but thesenanvalues around the area with valid data are confusing.For reasons I don't understand, this HRRR data has been put onto a different grid which is larger than the HRRR grid itself. Thus, there are missing data values around the edges of the extent of the HRRR data. Because when you print a NumPy N-D array it serves only a preview of data (i.e. the ellipses
...in the output implying there's more data between), and this preview is only at the beginning and end of the array object, it will onl…