Changeset 22493
- Timestamp:
- 03/02/18 10:21:09 (7 years ago)
- Location:
- issm/trunk-jpl/src/m/coordsystems
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/coordsystems/xy2ll.m
r22339 r22493 72 72 [res1,res2] = find(rho(:) <= 0.1); 73 73 if res1 74 lat(res1) = 90. * sgn;74 lat(res1) = pi/2. * sgn; 75 75 lon(res1) = 0.0; 76 76 end -
issm/trunk-jpl/src/m/coordsystems/xy2ll.py
r21303 r22493 73 73 res1 = np.nonzero(rho <= 0.1)[0] 74 74 if len(res1) > 0: 75 lat[res1] = 90. * sgn75 lat[res1] = pi/2. * sgn 76 76 lon[res1] = 0.0 77 77
Note:
See TracChangeset
for help on using the changeset viewer.