Replies: 4 comments 9 replies
-
Hi @rgrumbine, thanks for starting up this discussion. I wanted to follow up on item 2. OSI-SAF sea ice concentrations. I pulled a sample data file from their ftp site (ftp://osisaf.met.no/reprocessed/ice/conc-cont-reproc/v1p2). I see that this is a CF-compliant netCDF file:
So MET should be able to read it directly, especially after support for Lambert Azimuthal Equal Area grids was added in MET version 11.1.0 via dtcenter/MET#2565. While testing with the
Here's the image it creates but its not correctly placed on the earth. The gray data we see is just missing data values over land. We should see black map outlines. I wrote up a bugfix GitHub issue in the MET repository: dtcenter/MET#2651 |
Beta Was this translation helpful? Give feedback.
-
Next, following up on item 3. NSIDC v4 Climate Data Record. I pulled this sample data file: And see that it also follows the NetCDF CF-convention:
Testing using
And that produces this runtime error:
However, I do clearly see
If I rename the xgrid and ygrid variables to x and y, respectively, that turns them into coordinate variables (i.e. the variable and dimension names match).
Doing so DOES enable plot_data_plane to run but we have a similar problem parsing the grid specification correctly:
So this warrants another bugfix issue in MET to...
Please see issue dtcenter/MET#2652. |
Beta Was this translation helpful? Give feedback.
-
@rgrumbine, regarding item 1. IABP/IPAB Arctic and Antarctic drifting buoy observations I took a look at the raw data provided at: And I see that data is stored in a separate file for each buoy. So I understand that the changing lat/lon location through time provides relevant information. But it isn't immediately obvious to me how we'd include this in existing MET tools and use it to compare to model output. I do see that 39967.dat, for example, contains pressure (BP) and temperature (Ts) data and can see how we'd use that in Point-Stat. Would you envision that we take a simple approach here?
Do you have any advice or requests for how the timing info should be handled? For example, should And do you have any thoughts about how to incorporate the changing lat/lon drift information into an algorithm in MET? |
Beta Was this translation helpful? Give feedback.
-
@rgrumbine regarding item 4. National Ice Center (NIC) high resolution ice edge analysis, I see that this is a collection of lat/lon locations describing the ice edge. As such, it's similar to an ESRI shapefile or a polyline mask file used by MET. Both ESRI shapefiles and ASCII polyline files can be read MET's Any chance that this data is already available in shapefile format? It strikes me that this ASCII format likely doesn't follow a widely adopted and generally used standard. But please correct me if I'm wrong. If not, I'd propose ingesting this data with Python. One possible workflow is:
Does this workflow sound right? Or are you hoping to use this data in a different way? |
Beta Was this translation helpful? Give feedback.
-
For sea ice and polar verification I've been using data sets it seems METplus doesn't yet deal with
OSI-SAF and NSIDC are for evaluating model concentration field (threat scores, Heidke Skill score, integrated ice extent error, ...)
IABP/IPAB are for evaluating sea ice motion field
NIC is for evaluating the ice edge location
I have codes (C++ or python) to read all of these.
NIC sample:
NATICE ICE EDGE DATE 20230815
WGS84 DECIMAL DEGREES x 1000
LINE 70180N146420W 70299N146558W 70452N146990W
LINE 70452N146990W 70664N147622W 70725N147699W 70782N147940W
70844N148403W 70897N149115W 70986N150069W 71050N150244W
71113N150690W 71164N151598W 71193N152594W 71207N152969W
71192N153142W 71108N153143W 70987N152529W 70939N151894W
70856N151355W 70722N151128W 70662N151004W 70578N150418W
70565N150253W 70463N150000W
LINE 68824N179118W 68909N178487W 68911N178103W 68853N177783W
68780N177629W 68713N177504W 68652N177408W 68565N177250W
68508N177130W 68399N176847W 68330N176560W 68342N176302W
68493N176012W 68660N176071W 68850N176244W 68974N176402W
69087N176593W 69169N176766W 69366N176914W 69524N176756W
69652N176583W 69869N176414W 69979N176500W 70061N176538W
70159N176525W 70281N176544W 70406N176702W 70493N176831W
70602N176809W 70640N176551W 70831N175930W 70956N175838W
71026N175799W 71128N175598W 71170N175286W 71292N175014W
... continuing through all the line segments in the hemisphere
Thanks,
Bob Grumbine
Beta Was this translation helpful? Give feedback.
All reactions