question on regrid_data_plane #2778
-
Hello I am new to MET and METPlus, and have a question on regrid_data_plane. I downloaded docker images for met:11.1-latest and metplus:5.1-latest from https://dtcenter.org/community-code/metplus/metplus-5-1-existing-builds , and tried the following command inside a docker/container: root@d0431ca818f7:/met/met-11.1/tutorial/regridding# regrid_data_plane AORC-OWP_2017103120z.nc4 G130 output/a.nc -field 'name="APCP_surface"; level="surface";' Based on https://mailman.ucar.edu/pipermail/met_help/2019-July/003574.html , I added file_type=NETCDF_NCCF;' -v2 which still didn't work root@d0431ca818f7:/met/met-11.1/tutorial/regridding# regrid_data_plane AORC-OWP_2017103120z.nc4 G130 output/a.nc -field 'name="APCP_surface"; level="surface"; file_type=NETCDF_NCCF;' -v2 Please, teach me how I can do regridding the AORC data correctly. Thank you docker ps d0431ca818f7 dtcenter/met:11.1-latest "/bin/bash" 23 hours ago Up 23 hours musing_margulis docker image ls dtcenter/met 11.1-latest 9b84d6d1cc66 4 months ago 3.78GB |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@haksulee, thanks for sending along your sample data. Good news, this data can be easily read by the MET tools. And yes, since the global I do always recommend getting started with new datasets by running the Plot-Data-Plane tool. And doing so using verbosity level 4 ( Here's a command to try:
Here's some log output with the metadata:
And here's the resulting image: And plotting 2m temperature with Here's an example of running
Here's a couple more details you may find useful.
Hope this helps get you going. Glad it was an easy one! |
Beta Was this translation helpful? Give feedback.
@haksulee, thanks for sending along your sample data. Good news, this data can be easily read by the MET tools. And yes, since the global
conventions
attribute is missing from theAORC-OWP_2017103120z.nc4
file to identify this as being a CF-compliant NetCDF file, you do need to use thefile_type=NETCDF_NCCF;
option to explicitly tell MET how to interpret it.I do always recommend getting started with new datasets by running the Plot-Data-Plane tool. And doing so using verbosity level 4 (
-v 4
) will also print out timing information about the data being read. This step confirms that MET can read the data from your input file, place it at the right spot on earth, and the log messages confirm…