C C $Id: xy02f.f,v 1.13 1995/06/22 21:09:23 haley Exp $ C CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C C Copyright (C) 1995 C C University Corporation for Atmospheric Research C C All Rights Reserved C C C CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C C File: xy02f.f C C Author: Mary Haley C National Center for Atmospheric Research C PO 3000, Boulder, Colorado C C Date: Wed Feb 8 11:44:39 MST 1995 C C Description: This program shows how to create an XyPlot object C and how to tweak some of the XyPlot resources to C change the appearance of the plot. A resource file C is used to change the resources. C C The "CoordArrays" object is used to set up the data. C external NhlFAppClass external NhlFXWorkstationClass external NhlFNcgmWorkstationClass external NhlFPSWorkstationClass external NhlFXyPlotClass external NhlFCoordArraysClass C C Define the number of points in the curve. C parameter(NPTS=500) parameter(PI100=.031415926535898) integer appid,xworkid,plotid,dataid integer rlist, i real ydra(NPTS), theta integer NCGM, X11, PS C C Default is to an X workstation. C NCGM=0 X11=1 PS=0 C C Initialize some data for the XyPlot object. C do 10 i = 1,NPTS theta = PI100*real(i-1) ydra(i) = 500.+.9*real(i-1)*sin(theta) 10 continue C C Initialize the HLU library and set up resource template. C call NhlFInitialize call NhlFRLCreate(rlist,'setrl') C C Create Application object. The Application object name is used to C determine the name of the resource file, which is "xy02.res" in C this case. C call NhlFRLClear(rlist) call NhlFRLSetString(rlist,'appDefaultParent','True',ierr) call NhlFRLSetString(rlist,'appUsrDir','./',ierr) call NhlFCreate(appid,'xy02',NhlFAppClass,0,rlist,ierr) if (NCGM.eq.1) then C C Create an NCGM workstation. C call NhlFRLClear(rlist) call NhlFRLSetString(rlist,'wkMetaName','./xy02f.ncgm',ierr) call NhlFCreate(xworkid,'xy02Work', + NhlFNcgmWorkstationClass,0,rlist,ierr) else if (X11.eq.1) then C C Create an xworkstation object. C call NhlFRLClear(rlist) call NhlFRLSetString(rlist,'wkPause','True',ierr) call NhlFCreate(xworkid,'xy02Work',NhlFXWorkstationClass, + 0,rlist,ierr) else if (PS.eq.1) then C C Create a PS workstation. C call NhlFRLClear(rlist) call NhlFRLSetString(rlist,'wkPSFileName','./xy02f.ps',ierr) call NhlFCreate(xworkid,'xy02Work', + NhlFPSWorkstationClass,0,rlist,ierr) endif C C Define the data object. Since only the Y values are specified here, C each Y value will be paired with its integer array index. The id C for this object will later be used as the value for the XyPlot object C resource, "xyCoordData". C call NhlFRLClear(rlist) call NhlFRLSetFloatArray(rlist,'caYArray',ydra,NPTS,ierr) call NhlFCreate(dataid,'xyData',NhlFCoordArraysClass, + 0,rlist,ierr) C C Create the XyPlot object which is created as a child of the C XWorkstation object. The resources that are being changed are done C in the "xy02.res" file. C call NhlFRLClear(rlist) call NhlFRLSetInteger(rlist,'xyCoordData',dataid,ierr) call NhlFCreate(plotid,'xyPlot',NhlFXyPlotClass,xworkid, + rlist,ierr) C C Draw the plot. C call NhlFDraw(plotid,ierr) call NhlFFrame(xworkid,ierr) C C NhlDestroy destroys the given id and all of its children C so destroying "xworkid" will also destroy plotid". C call NhlFRLDestroy(rlist) call NhlFDestroy(xworkid,ierr) call NhlFDestroy(appid,ierr) C C Restores state. C call NhlFClose stop end