Fwd:Re: about ocean figure error from ORCA grid

From: ±è¹®Çö <corps798_at_nyahnyahspammersnyahnyah>
Date: Tue Dec 17 2013 - 21:34:54 MST

> Dear Mary Haley,
>
>
>
> I appreciate about your response with some coments.
>
>
>
> My data indicates lat/lon info like below;
>
> (0) min/max lat=-7.70105/8.99479
> (0) min/max lon=-18/18
>
> Absolutely, It has some problems.
>
> But, when I showed global distrubution of sst and salinity using ncview,
>
> It seems like correct.
>
>
>
> I put this file at "incoming" directory in your server, ftp.cgd.ucar.edu.
>
> You just use gunzip for this gzip file.
>
>
>
> My info is below;
>
> (1) file name is "prodh_rs_sfc_onm_T_13_20090509_200911_002.nc.gz"
>
> I guess that *003.nc.gz file may transfer incorrectly.
>
> (2) NCL version is 6.1.2
>
> (3) System type is "Linux cirrus2 2.6.32.59-0.3-default #1 SMP 2012-04-27
11:14:44 +0200 x86_64 x86_64 x86_64 GNU/Linux".
>
> (4) There is no error message in my results, but some ploblem is
explained previous mail.
>
>
>
> Thank you.
>
>
>
> From, Moon-Hyun
>
>
>
>
>
>
>
>
>>
>> ------------ ¿øº» ¸ÞÀÏ ³»¿ë ------------
>> º¸³½ »ç¶÷ : "±è¹®Çö"<corps798@gmail.com>
>> ¹Þ´Â »ç¶÷ : "mhkim77@korea.kr" <mhkim77@korea.kr>
>> ¸ÞÀÏ Á¦¸ñ : Fwd: Re: [ncl-talk] about ocean figure error from ORCA grid
>> º¸³½ ³¯Â¥ : 2013/12/18 12:08
>>
>> ---------- Àü´ÞµÈ ¸ÞÀÏ ----------
>> º¸³½»ç¶÷: "Mary Haley" <haley@ucar.edu>
>> ³¯Â¥: 2013. 12. 17. ¿ÀÀü 1:22
>> Á¦¸ñ: Re: [ncl-talk] about ocean figure error from ORCA grid
>> ¹Þ´Â»ç¶÷: "±è¹®Çö" <corps798@gmail.com>
>> ÂüÁ¶: <ncl-talk@ucar.edu>
>>
>> Dear Moon-Hyun Kim,
>>
>> As far as I can tell, you are doing everything correctly. It looks like
your "nav_lat" and "nav_lon" values may be problematic.
>>
>> Did you look at the lat/lon values to makes sure they are okay?
>>
>> print("min/max lat = " + min(lat) + "/" + max(lat))
>> print("min/max lon = " + min(lon) + "/" + max(lon))
>>
>> Can you provide us with the data file? You can use our ftp account:
>>
>> http://www.ncl.ucar.edu/report_bug.shtml#HowToFTP
>>
>> I don't think this will fix your problem, but since your array is a bit
large, you might try this setting for faster plotting:
>>
>> res@cnFillMode = "RasterFill"
>>
>> --Mary
>>
>>
>>
>> On Dec 15, 2013, at 10:21 PM, ±è¹®Çö <corps798@gmail.com> wrote:
>>
>> > Dear, ncl talkers.
>> > >
>> > >
>> > >
>> > > Hello,
>> > >
>> > > I would like to use ORCA grid of ocean model to analyze the air-sea
interaction,
>> > >
>> > > but, have a problem such as attached figure file.
>> > >
>> > >
>> > >
>> > > My ORCA grid point is 1021 x 1442.
>> > >
>> > > I guess that I may need some infomation such as axis or bounds info,
to use the sfXArray and sfYArray of each 2 dimensional x, y axis.
>> > >
>> > >
>> > >
>> > > How can I set up it? Please, help me.
>> > >
>> > >
>> > >
>> > > from Moon-Hyun Kim
>> > >
>> > >
>> > >
>> > > Ps: Attached files are err figure using below and my nc data head
info.
>> > >
>> > > Below contents are my just to draw ORCA grid.
>> > >
>> > > -------------------------------------------
>> > >
>> > > load "$NCARG_ROOT/lib/ncarg/ncls/csm/gsn_code.ncl"
>> > > load "$NCARG_ROOT/lib/ncarg/ncls/csm/gsn_csm.ncl"
>> > >
>> > > begin
>> > >
>> > > dir = "/crlnas/vol31/gpc/GS5Archive/prodh/2013nc/onm/T/"
>> > > srcFileName = "prodh_rs_sfc_onm_T_13_20090509_200911_001.nc"
>> > >
>> > > orca = addfile(dir+srcFileName,"r")
>> > > sst = orca->votemper(0,0,:1019,1:) ; Read data
>> > > lon = orca->nav_lon
>> > > lat = orca->nav_lat
>> > >
>> > > ;---- PLOT
>> > > wks = gsn_open_wks("ps","orca")
>> > > gsn_define_colormap(wks,"gui_default")
>> > >
>> > > res = True
>> > > res@gsnMaximize = True ; Maximize plot in frame
>> > > res@trGridType = "TriangularMesh" ; Define the mesh
type.
>> > >
>> > > res@sfXArray = lon
>> > > res@sfYArray = lat
>> > > res@sfMissingValueV = sst@_FillValue
>> > >
>> > > res@cnFillOn = True
>> > > res@cnFillColors = (/ 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 15,
16, 17, \
>> > > 19, 20, 21, 23/)
>> > >
>> > > res@cnLinesOn = False ; Turn lines off
>> > > res@cnLineLabelsOn = False ; Turn labels off
>> > >
>> > > res@mpProjection = "Orthographic"
>> > > res@mpCenterLatF = 50
>> > > res@mpGridLineColor = -1 ; Turn off grid lat/lon lines
>> > > res@mpGridAndLimbOn = True
>> > >
>> > > res@cnFillMode = "AreaFill" ; The default.
>> > > res@tiMainString = "Orca Grid - Default fill mode"
>> > >
>> > > map = gsn_csm_contour_map(wks,sst,res)
>> > >
>> > > end
>> >
<info_gs5_ocean.txt><orca.gif>_______________________________________________
>> > ncl-talk mailing list
>> > List instructions, subscriber options, unsubscribe:
>> > http://mailman.ucar.edu/mailman/listinfo/ncl-talk

_______________________________________________
ncl-talk mailing list
List instructions, subscriber options, unsubscribe:
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Tue Dec 17 21:35:14 2013

This archive was generated by hypermail 2.1.8 : Wed Dec 18 2013 - 14:29:51 MST