<div dir="ltr"><div class="gmail_default"><font face="arial, helvetica, sans-serif">Sourav,</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">I&#39;m not sure what you mean by &quot;converting my variable&quot;.</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">Since your latitude and longitude arrays are two-dimensional, you cannot associate them with &quot;temperature&quot; in the same way that &quot;y&quot; and &quot;x&quot; are currently associated with &quot;temperature&quot; as coordinate variables. This is a NetCDF limitation that requires that coordinate variables be one-dimensional and the same length as the dimension they represent.</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif">You already have a &quot;coordinates&quot; *attribute* associated with &quot;temperature&quot;, that indicates which variables represent the lat/lon arrays for your data:</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><br></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif"><span style="color:rgb(0,0,0)">        temperature:coordinates = &quot;longitude latitude&quot; ;</span><br style="color:rgb(0,0,0)"></font></div><div class="gmail_default"><span style="color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif"><br></font></span></div><div class="gmail_default"><span style="color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif">This is how we would normally suggest that you &quot;associate&quot; 2D lat/lon arrays with a variable on a NetCDF file, so really, your &quot;temperature&quot; variable looks pretty good as it is.</font></span></div><div class="gmail_default"><span style="color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif"><br></font></span></div><div class="gmail_default"><span style="color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif">--Mary</font></span></div><div class="gmail_default"><span style="color:rgb(0,0,0)"><font face="arial, helvetica, sans-serif"><br></font></span></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Sep 9, 2016 at 4:19 AM, Sourav Chatterjee <span dir="ltr">&lt;<a href="mailto:srvsxc@outlook.com" target="_blank">srvsxc@outlook.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




<div dir="ltr">
<div style="font-size:12pt;color:#000000;background-color:#ffffff;font-family:Calibri,Arial,Helvetica,sans-serif">
<p>Hi all</p>
<p><br>
</p>
<p>I want convert my variable (temperature) to temperature (time,depth,lat,lon) from temperature(time,depth,x,y)
<br>
</p>
<p><br>
</p>
<p><br>
</p>
<p>here is how it looks like now.</p>
<p><br>
</p>
<p>Any help!</p>
<p><br>
</p>
<p>Thanks<br>
</p>
<p><br>
</p>
<p><span></span></p>
<div>dimensions:<br>
    depth = 12 ;<br>
    time = UNLIMITED ; // (288 currently)<br>
    x = 428 ;<br>
    y = 403 ;<br>
variables:<br>
    int stereographic ;<br>
        stereographic:grid_mapping_<wbr>name = &quot;polar_stereographic&quot; ;<br>
        stereographic:latitude_of_<wbr>projection_origin = 90. ;<br>
        stereographic:longitude_of_<wbr>projection_origin = -45. ;<br>
        stereographic:scale_factor_<wbr>at_projection_origin = 1. ;<br>
        stereographic:straight_<wbr>vertical_longitude_from_pole = -45. ;<br>
        stereographic:false_easting = 0. ;<br>
        stereographic:false_northing = 0. ;<br>
    float x(x) ;<br>
        x:axis = &quot;X&quot; ;<br>
        x:standard_name = &quot;projection_x_coordinate&quot; ;<br>
        x:units = &quot;100  km&quot; ;<br>
    float y(y) ;<br>
        y:standard_name = &quot;projection_y_coordinate&quot; ;<br>
        y:axis = &quot;Y&quot; ;<br>
        y:units = &quot;100  km&quot; ;<br>
    float depth(depth) ;<br>
        depth:long_name = &quot;depth&quot; ;<br>
        depth:units = &quot;m&quot; ;<br>
        depth:standard_name = &quot;depth&quot; ;<br>
        depth:positive = &quot;down&quot; ;<br>
        depth:axis = &quot;Z&quot; ;<br>
    double time(time) ;<br>
        time:units = &quot;hour since 1950-1-1T00:00:00Z&quot; ;<br>
        time:long_name = &quot;forecast time&quot; ;<br>
    float longitude(y, x) ;<br>
        longitude:standard_name = &quot;longitude&quot; ;<br>
        longitude:units = &quot;degrees_east&quot; ;<br>
    float latitude(y, x) ;<br>
        latitude:standard_name = &quot;latitude&quot; ;<br>
        latitude:units = &quot;degrees_north&quot; ;<br>
    short temperature(time, depth, y, x) ;<br>
        temperature:_FillValue = -32767s ;<br>
        temperature:missing_value = -32767s ;<br>
        temperature:add_offset = 23.5 ;<br>
        temperature:scale_factor = 0.000808839239385893 ;<br>
        temperature:units = &quot;Celsius&quot; ;<br>
        temperature:standard_name = &quot;sea_water_potential_<wbr>temperature&quot; ;<br>
        temperature:grid_mapping = &quot;stereographic&quot; ;<br>
        temperature:coordinates = &quot;longitude latitude&quot; ;<br>
        temperature:cell_methods = &quot;area: mean&quot; ;<br>
<br>
// global attributes:<br>
        :title = &quot;Arctic Ocean Physics Reanalysis (1991-2014), 12.5km monthly mean (dataset-ran-arc-myoceanv2-be)<wbr>&quot; ;<br>
        :institution = &quot;NERSC, Thormoehlens gate 47, N-5006 Bergen, Norway&quot; ;<br>
        :history = &quot;20160112:Created by program hyc2proj, version V0.3&quot; ;<br>
        :source = &quot;NERSC-HYCOM model fields&quot; ;<br>
        :references = &quot;<a href="http://topaz.nersc.no" target="_blank">http://topaz.nersc.no</a>&quot; ;<br>
        :field_type = &quot;Files based on file type nersc_weekly&quot; ;<br>
        :Conventions = &quot;CF-1.4&quot; ;<br>
        :field_date = &quot;2014-11-15&quot; ;<br>
        :bulletin_date = &quot;2014-11-15&quot; ;<br>
}<br>
</div>
<br>
<p></p>
</div>
</div>

<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>