30 SUBROUTINE w3fb01(XI,XJ,XMESHL,ALAT,ALONG)
32 DATA degprd/57.2957795/
35 gi2 = (1.86603 * earthr) / xmeshl
37 r2 = xi * xi + xj * xj
38 IF (r2.NE.0.0)
GO TO 100
44 alat = asin((gi2-r2) / (gi2+r2)) * degprd
45 xlong = degprd * atan2(xj,xi)
46 IF (xlong) 200,300,300
50 IF (along.LT.0.0) along = along + 360.0
subroutine w3fb01(xi, xj, xmeshl, alat, along)
Converts the coordinates of a location from the grid(i,j) coordinate system overlaid on the polar ste...