<div dir="ltr"><div>Are the latitude and longitudes on the file?</div><div><br></div><div>1) If "yes", just read as indicated below.</div><div>2) If "no",  the projection information must be used to generate the latitude and longitude information<br></div><div>------------------------<br></div><div>The following functions may be useful when the latitudes and longitudes are available<br></div><div><br></div><div><div><a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/region_ind.shtml"><b>region_ind<br></b></a></div><div><br></div><div><b><a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/getind_latlon2d.shtml">getind_latlon2d</a><br></b></div><pre>-------------------------<br> f     = <a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/addfile.shtml"><strong>addfile</strong></a>("3DIMG_23JUN2018_0300_L1C_ASIA_MER.h5" , "r")

  glon2d =  f->...longitude_variable ...
  glat2d =  f->...latitude_variable...

  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong>printMinMax</strong></a>(glat2d, 0)
  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong>printMinMax</strong></a>(glon2d, 0)

  latS   = 10                      ; California [*rough*]
  latN   = 20
  lonW   = 70
  lonE   = 75<br><br> <br>  ji = <strong>region_ind</strong> (glat2d,glon2d, latS, latN, lonW, lonE)

  jStrt = ji(0)      ; lat start
  jLast = ji(1)      ; lat last
  iStrt = ji(2)      ; lon start
  iLast = ji(3)      ; lon last

  LAT2D = glat2d(jStrt:jLast,iStrt:iLast)
  LON2D = glon2d(jStrt:jLast,iStrt:iLast)

  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong>printMinMax</strong></a>(LAT2D, 0)
  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/printMinMax.shtml"><strong>printMinMax</strong></a>(LON2D, 0)

                      ; read data just for the region of interest
  x     = f->IMG_TIR1(0,jStrt:jLast,iStrt:iLast)
  printVarSummary(x)<br></pre><pre>  printMinMax(x) <br></pre></div><div><br></div><div><b><br></b></div><div><b><br></b></div><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Sep 11, 2020 at 8:41 AM Geeta Geeta via ncl-talk <<a href="mailto:ncl-talk@mailman.ucar.edu">ncl-talk@mailman.ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">the NxM grid is the larger grid,  of the size 55N and 61E.  <br>
will it be minI  = 70* 61/(105.5-44.5) ??<br>
<br>
does not seem to be correct, I am not achieving anything <br>
<br>
<br>
Geeta.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
 On Friday, 11 September, 2020, 07:48:54 pm IST, Rick Brownrigg <<a href="mailto:brownrig@ucar.edu" target="_blank">brownrig@ucar.edu</a>> wrote:<br>
<br>
<br>
<br>
<br>
<br>
 Hi,<br>
No, not in meters -- you're trying to find the indices of the grid cells that correspond to the corners of your smaller domain. For instance, what are the values i,j that correspond to the corner (-10N,44.5E)<br>
<br>
RB<br>
<br>
On Fri, Sep 11, 2020 at 8:11 AM Geeta Geeta <<a href="mailto:geetag54@yahoo.com" target="_blank">geetag54@yahoo.com</a>> wrote:<br>
Soory Mr Rick. It is not clear to me.<br>
<br>
<br>
<br>
4 corners of large  domain are  (-10N,44.5E) , (-10,105.5), (45.5,105.5), (45.5,44.5).<br>
<br>
I want small domain to be 10-20N/70-75E.<br>
<br>
So I have to calculate the X Y (distance in meters)?.<br>
<br>
kindly clarify .<br>
<br>
<br>
<br>
Geeta.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
 On Friday, 11 September, 2020, 07:20:57 pm IST, Rick Brownrigg <<a href="mailto:brownrig@ucar.edu" target="_blank">brownrig@ucar.edu</a>> wrote:<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
 Hi,<br>
<br>
I *think* the trick here is to compute the i,j indices of the grid that correspond to your smaller domain. Since it's a mercator projection, and the original domain is relatively small (60x60 degs), I would think you could get decent results by using a simple linear scaling to find those values. So if the grid is NxM (LatxLon), and you extract the min/max lat/lons from the attributes into variables minLon, maxLon, etc.,  then something like:<br>
<br>
<br>
<br>
  minI = tointeger( minLonSmallerDomain * (M -0) / (maxLon - minLon) )  ; truncating<br>
<br>
  maxI = tointeger( maxLonSmallerDomain * (M -0) / (maxLon - minLon) )...similarly for Y...<br>
<br>
and then:<br>
<br>
 Plot(0)                           =       gsn_csm_contour_map(wks,TIR1_INVERTED(0,minJ:maxJ,minI:maxI),rescount)<br>
<br>
and don't forget to substitute appropriate values into the mpLeft/RightCornerLat/LonF resources.<br>
<br>
Does that make sense?<br>
<br>
Rick<br>
<br>
<br>
<br>
On Fri, Sep 11, 2020 at 4:22 AM Geeta Geeta via ncl-talk <<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a>> wrote:<br>
<br>
Hi.<br>
<br>
<br>
<br>
I have satellite data which has a resultion of 4 km (TIR1) and there is projection information provided in the datafile.<br>
<br>
<br>
<br>
integer Projection_Information ( DIM_000 )<br>
<br>
<br>
<br>
        DIMENSION_LIST :    <ARRAY of 0 elements><br>
<br>
<br>
<br>
        false_easting :      0<br>
<br>
<br>
<br>
        false_northing :      0<br>
<br>
<br>
<br>
        grid_mapping_name :    mercatorpor Brightness Temperaturerature<br>
<br>
<br>
<br>
        longitude_of_projection_origin :      75<br>
<br>
<br>
<br>
        lower_left_lat_lon(degrees) :    (  -10, 44.5 )<br>
<br>
<br>
<br>
        lower_right_lat_lon(degrees) :    (  -10, 105.5 )<br>
<br>
<br>
<br>
        semi_major_axis :    6378137<br>
<br>
<br>
<br>
        semi_minor_axis :    6356752.3142<br>
<br>
<br>
<br>
        standard_parallel :    17.75<br>
<br>
<br>
<br>
        upper_left_lat_lon(degrees) :    ( 45.5, 44.5 )<br>
<br>
<br>
<br>
        upper_left_xy(meters) :    ( -3234623.003937, 5401854.420193 )<br>
<br>
<br>
<br>
        upper_right_lat_lon(degrees) :    ( 45.5, 105.5 )<br>
<br>
<br>
<br>
The lat/lon are not provided.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Plotting the TIR1 (count), radiance and Brightness temperature for the entire domain is happening by using information from the Projection info. This INFO is used from the Line numbers 109-114 of the code.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
My questions are 1. I am Not able to plot the data for a smaller domain of my ineterst<br>
<br>
<br>
<br>
                          2. since I am unable to attch the lat/lon arrays to the variables, I am unable to plot the data for a smaller domain and unable to write the data for a smaller domain of my intererst.<br>
<br>
<br>
<br>
the Images are attached.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Request someone to help me.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Geeta._______________________________________________<br>
<br>
<br>
<br>
ncl-talk mailing list<br>
<br>
<br>
<br>
<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a><br>
<br>
<br>
<br>
List instructions, subscriber options, unsubscribe:<br>
<br>
<br>
<br>
<a href="https://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">https://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="https://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">https://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></blockquote></div>