/usr/share/ncarg/hluex/contourplot/cn12c.c is in libncarg-data 6.3.0-6build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | /*
* $Id: cn12c.c,v 1.5 2010-03-15 22:49:23 haley Exp $
*/
/************************************************************************
* *
* Copyright (C) 1995 *
* University Corporation for Atmospheric Research *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: cn12c.c
*
* Author: Mary Haley
* National Center for Atmospheric Research
* PO 3000, Boulder, Colorado
*
* Date: Mon Oct 16 10:46:27 MDT 1995
*
* Description: This example emulates LLU example "cpex08". It
* draws a filled map with filled contours appearing in
* Africa. In order to mask Africa from the map fill, we
* use the mpMaskAreaSpecifiers resource and mask all of
* the countries in Africa.
*
*/
#include <stdio.h>
#include <math.h>
#include <ncarg/gks.h>
#include <ncarg/ncargC.h>
#include <ncarg/hlu/hlu.h>
/*
* Include a header file for each object created
*/
#include <ncarg/hlu/App.h>
#include <ncarg/hlu/NcgmWorkstation.h>
#include <ncarg/hlu/PSWorkstation.h>
#include <ncarg/hlu/PDFWorkstation.h>
#include <ncarg/hlu/CairoWorkstation.h>
#include <ncarg/hlu/ScalarField.h>
#include <ncarg/hlu/ContourPlot.h>
#include <ncarg/hlu/MapPlot.h>
#define M 40
#define N 40
/*
* Areas we want to fill.
*/
char *fill_specs[] = {"water","land"};
/*
* Areas we want to mask (countries of Africa).
*/
char *mask_specs[] = {
"algeria","angola","angola-exclave-called-cabinda","benin","botswana",
"burundi","cameroon","central-african-republic","chad","congo",
"djibouti","egypt","equatorial-guinea","ethiopia","gabon","gambia",
"ghana","guinea","guinea-bissau","ivory-coast","kenya","lesotho",
"liberia","libya","madagascar","malawi","mali","mauritania",
"mauritius","morocco","mozambique","namibia","niger","nigeria",
"rwanda","senegal","sierra-leone","somalia","south-africa","sudan",
"swaziland","tanzania","togo","tunisia","uganda","upper-volta",
"western-sahara","zaire","zambia","zimbabwe"};
int main(int argc, char *argv[])
{
int appid,wid,dataid,cnid,mpid;
int rlist;
float z[N*M];
ng_size_t len_dims[2];
extern void bndary();
extern void gendat (float *,int,int,int,int,int,float,float);
char const *wks_type = "x11";
/*
* Initialize the high level utility library
*/
NhlInitialize();
/*
* Create an application object.
*/
rlist = NhlRLCreate(NhlSETRL);
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNappUsrDir,"./");
NhlCreate(&appid,"cn12",NhlappClass,NhlDEFAULT_APP,rlist);
if (!strcmp(wks_type,"ncgm") || !strcmp(wks_type,"NCGM")) {
/*
* Create a meta file workstation.
*/
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNwkMetaName,"./cn12c.ncgm");
NhlCreate(&wid,"cn12Work",
NhlncgmWorkstationClass,NhlDEFAULT_APP,rlist);
}
else if (!strcmp(wks_type,"x11") || !strcmp(wks_type,"X11")) {
/*
* Create an X workstation.
*/
NhlRLClear(rlist);
NhlRLSetInteger(rlist,NhlNwkPause,True);
NhlCreate(&wid,"cn12Work",
NhlcairoWindowWorkstationClass,NhlDEFAULT_APP,rlist);
}
else if (!strcmp(wks_type,"oldps") || !strcmp(wks_type,"OLDPS")) {
/*
* Create an older-style PostScript workstation.
*/
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNwkPSFileName,"./cn12c.ps");
NhlCreate(&wid,"cn12Work",
NhlpsWorkstationClass,NhlDEFAULT_APP,rlist);
}
else if (!strcmp(wks_type,"oldpdf") || !strcmp(wks_type,"OLDPDF")) {
/*
* Create an older-style PDF workstation.
*/
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNwkPDFFileName,"./cn12c.pdf");
NhlCreate(&wid,"cn12Work",
NhlpdfWorkstationClass,NhlDEFAULT_APP,rlist);
}
else if (!strcmp(wks_type,"pdf") || !strcmp(wks_type,"PDF") ||
!strcmp(wks_type,"ps") || !strcmp(wks_type,"PS")) {
/*
* Create a cairo PS/PDF workstation.
*/
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNwkFileName,"./cn12c");
NhlRLSetString(rlist,NhlNwkFormat,(char*)wks_type);
NhlCreate(&wid,"cn12Work",
NhlcairoDocumentWorkstationClass,NhlDEFAULT_APP,rlist);
}
else if (!strcmp(wks_type,"png") || !strcmp(wks_type,"PNG")) {
/*
* Create a cairo PNG workstation.
*/
NhlRLClear(rlist);
NhlRLSetString(rlist,NhlNwkFileName,"./cn12c");
NhlRLSetString(rlist,NhlNwkFormat,(char*)wks_type);
NhlCreate(&wid,"cn12Work",
NhlcairoImageWorkstationClass,NhlDEFAULT_APP,rlist);
}
/*
* Call the routine 'gendat' to create an array of contour data.
* Create a ScalarField data object and hand it the data created by
* 'gendat'.
*/
NhlRLClear(rlist);
len_dims[0] = N;
len_dims[1] = M;
gendat(z,M,M,N,15,15,-10.,110.);
NhlRLClear(rlist);
NhlRLSetMDFloatArray(rlist,NhlNsfDataArray,z,2,len_dims);
NhlRLSetFloat(rlist,NhlNsfXCStartV,-18.);
NhlRLSetFloat(rlist,NhlNsfXCEndV,52.);
NhlRLSetFloat(rlist,NhlNsfYCStartV,-35.);
NhlRLSetFloat(rlist,NhlNsfYCEndV,38.);
NhlCreate(&dataid,"DataPlot",NhlscalarFieldClass,appid,rlist);
/*
* Create a ContourPlot object using the above data field, and make sure
* the LabelBar is displayed.
*/
NhlRLClear(rlist);
NhlRLSetInteger(rlist,NhlNcnScalarFieldData,dataid);
NhlCreate(&cnid,"con1",NhlcontourPlotClass,wid,rlist);
/*
* Create a map object, specifying the areas we want filled and masked.
*/
NhlRLClear(rlist);
NhlRLSetFloat(rlist,NhlNvpXF,0.1);
NhlRLSetStringArray(rlist,NhlNmpMaskAreaSpecifiers,mask_specs,
NhlNumber(mask_specs));
NhlRLSetStringArray(rlist,NhlNmpFillAreaSpecifiers,fill_specs,
NhlNumber(fill_specs));
NhlRLSetString(rlist,NhlNpmLabelBarDisplayMode,"always");
NhlCreate(&mpid,"map",NhlmapPlotClass,wid,rlist);
NhlAddOverlay(mpid,cnid,-1);
NhlDraw(mpid);
NhlFrame(wid);
/*
* Destroy the workstation object and exit.
*/
NhlDestroy(wid);
NhlClose();
exit(0);
}
#define max(x,y) ((x) > (y) ? (x) : (y) )
#define min(x,y) ((x) < (y) ? (x) : (y) )
#define pow2(x) ((x)*(x))
void gendat (float *data,int idim,int m,int n,int mlow,int mhgh,float dlow,float dhgh)
{
/*
* This is a routine to generate test data for two-dimensional graphics
* routines. Given an array "DATA", dimensioned "IDIM x 1", it fills
* the sub-array ((DATA(I,J),I=1,M),J=1,N) with a two-dimensional field
* of data having approximately "MLOW" lows and "MHGH" highs, a minimum
* value of exactly "DLOW" and a maximum value of exactly "DHGH".
*
* "MLOW" and "MHGH" are each forced to be greater than or equal to 1
* and less than or equal to 25.
*
* The function used is a sum of exponentials.
*/
float ccnt[3][50], fovm, fovn, dmin, dmax, temp;
extern float fran();
int nlow, nhgh, ncnt, i, j, k, ii;
fovm=9./(float)m;
fovn=9./(float)n;
nlow=max(1,min(25,mlow));
nhgh=max(1,min(25,mhgh));
ncnt=nlow+nhgh;
for( k=1; k <= ncnt; k++ ) {
ccnt[0][k-1]=1.+((float)m-1.)*fran();
ccnt[1][k-1]=1.+((float)n-1.)*fran();
if (k <= nlow) {
ccnt[2][k-1]= -1.;
}
else {
ccnt[2][k-1] = 1.;
}
}
dmin = 1.e36;
dmax = -1.e36;
ii = 0;
for( j = 1; j <= n; j++ ) {
for( i = 1; i <= m; i++ ) {
data[ii]=.5*(dlow+dhgh);
for( k = 1; k <= ncnt; k++ ) {
temp = -(pow2((fovm*((float)(i)-ccnt[0][k-1])))+
pow2(fovn*((float)(j)-ccnt[1][k-1])));
if (temp >= -20.) data[ii]=data[ii]+.5*(dhgh-dlow)
*ccnt[2][k-1]*exp(temp);
}
dmin=min(dmin,data[ii]);
dmax=max(dmax,data[ii]);
ii++;
}
}
for( j = 0; j < m*n; j++ ) {
data[j]=(data[j]-dmin)/(dmax-dmin)*(dhgh-dlow)+dlow;
}
}
float rseq[] = { .749,.973,.666,.804,.081,.483,.919,.903,.951,.960,
.039,.269,.270,.756,.222,.478,.621,.063,.550,.798,.027,.569,
.149,.697,.451,.738,.508,.041,.266,.249,.019,.191,.266,.625,
.492,.940,.508,.406,.972,.311,.757,.378,.299,.536,.619,.844,
.342,.295,.447,.499,.688,.193,.225,.520,.954,.749,.997,.693,
.217,.273,.961,.948,.902,.104,.495,.257,.524,.100,.492,.347,
.981,.019,.225,.806,.678,.710,.235,.600,.994,.758,.682,.373,
.009,.469,.203,.730,.588,.603,.213,.495,.884,.032,.185,.127,
.010,.180,.689,.354,.372,.429 };
float fran()
{
static int iseq = 0;
iseq = (iseq % 100) + 1;
return(rseq[iseq-1]);
}
|