<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Ruben,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Sorry for the delay in response.  </div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><div class="gmail_default">When you call wrf_map_resources, it is querying your NetCDF file in order to get all the projection information it needs to correctly plot the data in the map projection defined by the WRF file. This function does NOT use the special lat2d/lon2d attributes.  These are what you set when you want to plot curvilinear data that you don&#39;t have the map projection information for.</div><div><br></div></div><div class="gmail_default" style="font-size:small">If you truly want to be able to plot your data in the same map projection as what was defined on a WRF output file, then you need to write all the global attributes that define the map projection of the WRF data AND you need to write the XLAT and XLONG variables to the file.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">When you look at a WRF output file with &quot;ncdump -h&quot; or &quot;ncl_filedump, you will see lots of global attributes. The ones that have to do with the map projection look something like this:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><div class="gmail_default">      CEN_LAT : 25.99999</div><div class="gmail_default">      CEN_LON : -94</div><div class="gmail_default">      TRUELAT1 : 30</div><div class="gmail_default">      TRUELAT2 : 60</div><div class="gmail_default">      MAP_PROJ : 3</div><div class="gmail_default"><br></div><div class="gmail_default">If you look at the &quot;wrf_map_resources&quot; function in the $NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl file, you will see that it is looking for many global attributes depending on the map projection you have. </div><div class="gmail_default"><br></div><div class="gmail_default">I think this is a complete list of the global attributes that it will need. Not all of these will be on the file, as this has to do with whatever map projection you have:</div><div class="gmail_default"><br></div><div class="gmail_default"><div class="gmail_default">MAP_PROJ<br></div><div class="gmail_default">CEN_LAT</div><div class="gmail_default">CEN_LON</div><div class="gmail_default">POLE_LAT<br></div><div class="gmail_default">POLE_LON</div><div class="gmail_default">REF_LAT</div><div class="gmail_default">REF_LON</div><div class="gmail_default">STAND_LON</div><div class="gmail_default">TRUELAT1</div><div class="gmail_default">TRUELAT2</div><div class="gmail_default"><br></div><div class="gmail_default">Plus, it needs to read XLAT and XLONG in order to get the correct corner information for the map projection.</div><div class="gmail_default"><br></div><div class="gmail_default">This seems like a lot of work on your part, trying to reproduce the WRF map projection information.  Are you sure this is what you need?</div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div></div><div class="gmail_default"><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jun 12, 2017 at 2:00 PM, Behnke, Ruben <span dir="ltr">&lt;<a href="mailto:ruben.behnke@mso.umt.edu" target="_blank">ruben.behnke@mso.umt.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
<br>
<br>
   I&#39;m trying to write out netcdf files in a similar way to wrfout files, so that the data can be easily plotted (using the attached Temp_Wind.ncl script).  Right now, I&#39;m adding the 2d lat and lon variables from the wrfout files as two variables (&#39;lat&#39; and &#39;lon&#39;) and as variable attributes (lines 967 to 1017 in Summarize_Daily_New_d02.ncl) to the other variables (such as albedo), but plotting is still not working.  Is there a correct way to do this?  Any help would be greatly appreciated.<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
<br>
Ruben Behnke<br>
<br>
<br>
</font></span><br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>