Hi,
In subroutine readgeo3 in the "TelemacV7\v7p0r1\sources\utils\bief\readgeo3.f ", i came across this formulation for
! LATITUDE-LONGITUDE COORDINATES (DEGREES)
! CHANGED INTO MERCATOR PROJECTION.
to me it seems that there is a factor of 2 missing in the lines 146, 147, 159 and 160.
these lines are:
146 LONGIRAD=LONGI0*PS4/90.D0
147 TAN2=TAN(LATI0*PS4/180.D0+PS4)
159 X(I)=R*(X(I)*PS4/90.D0-LONGIRAD)
160 TAN1=TAN(Y(I)*PS4/180.D0+PS4)
whereas i think they should be :
146 LONGIRAD=LONGI0*PS4*2/90.D0
147 TAN2=TAN(LATI0*PS4*2/180.D0+PS4)
159 X(I)=R*(X(I)*PS4*2/90.D0-LONGIRAD)
160 TAN1=TAN(Y(I)*PS4*2/180.D0+PS4)
could it be?
has anyone faced this issue before?
Bests,
Homayoon