Changeset 34652 in osm for applications/editors/josm/plugins/seachart/src/s57/S57map.java
- Timestamp:
- 2018-09-15T13:50:24+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/s57/S57map.java
r32909 r34652 908 908 first = false; 909 909 } else { 910 sarc += (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));910 sarc += Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)); 911 911 } 912 912 llat = lat; … … 931 931 first = false; 932 932 } else { 933 sarc = (Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)));933 sarc = Math.acos(Math.cos(lon - llon) * Math.cos(lat - llat)); 934 934 if (sarc > harc) 935 935 break;
Note:
See TracChangeset
for help on using the changeset viewer.
