1MAPTRI(3NCARG) NCAR GRAPHICS MAPTRI(3NCARG)
2
3
4
6 MAPTRI - Performs inverse transformations.
7
9 CALL MAPTRI (UVAL,VVAL,RLAT,RLON)
10
12 #include <ncarg/ncargC.h>
13
14 void c_maptri (float uval, float vval, float *rlat,
15 float *rlon)
16
18 UVAL and VVAL
19 (input expressions, of type REAL) define the point
20 (UVAL,VVAL) that is the projection in the u/v plane of the
21 point whose latitude and longitude are desired. The units
22 of UVAL and VVAL depend on the projection.
23
24 RLAT and RLON
25 (output variables, of type REAL) are the latitude and
26 longitude, respectively, of the point, in degrees. RLAT
27 will be between -90. and +90., inclusive; RLON will be
28 between -180. and +180., inclusive.
29
30 If the point (UVAL,VVAL) is not the projection of some
31 point of the globe or is outside the boundary of the map,
32 RLAT and RLON are returned equal to 1.E12.
33
35 The C-binding argument descriptions are the same as the FORTRAN
36 argument descriptions.
37
39 Use the ncargex command to see the following relevant examples:
40 ccpmpxy, mpex10.
41
43 To use MAPTRI or c_maptri, load the NCAR Graphics libraries ncarg,
44 ncarg_gks, and ncarg_c, preferably in that order.
45
47 Online: ezmap, ezmap_params, mapaci, mapbla, mapblm, mapdrw, mapeod,
48 mapfst, mapgci, mapgrd, mapgrm, mapgtc, mapgti, mapgtl, mapgtr, mapint,
49 mapiq, mapiqa, mapiqd, mapiqm, mapit, mapita, mapitd, mapitm, maplbl,
50 maplmb, maplot, mappos, maproj, maprs, maprst, mapsav, mapset, mapstc,
51 mapsti, mapstl, mapstr, maptra, maptrn, mapusr, mapvec, mpchln, mpfnme,
52 mpgetc, mpgeti, mpgetl, mpgetr, mpglty, mpiaty, mpifnb, mpilnb, mpiola,
53 mpiosa, mpipai, mpipan, mpipar, mpisci, mplnam, mplndm, mplndr, mplnri,
54 mpname, mprset, mpsetc, mpseti, mpsetl, mpsetr, supmap, supcon,
55 ncarg_cbind
56
57 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
58
60 Copyright (C) 1987-2009
61 University Corporation for Atmospheric Research
62 The use of this Software is governed by a License Agreement.
63
64
65
66UNIX March 1993 MAPTRI(3NCARG)