Changeset 34133 in osm for applications
- Timestamp:
- 2018-03-26T21:43:44+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/ColorMap.java
r33215 r34133 99 99 } 100 100 101 102 101 /** 103 102 * Gets the available color map names. 104 103 * 105 * @param name the name106 104 * @return the map or <code>null</code>, if no such map exists 107 105 */ -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/IVertexRenderer.java
r32775 r34133 25 25 * such color map exists, the old color map is kept. 26 26 * 27 * @param mapToUse the map to use27 * @param name the map to use 28 28 */ 29 29 void selectColorMap(String name); -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/ElevationModel.java
r32775 r34133 21 21 * 22 22 * @author Oliver Wieland <oliver.wieland@online.de> 23 * @see IElevationModel TrackListener23 * @see IElevationModel 24 24 */ 25 25 public class ElevationModel implements IGpxVisitor, IElevationModel { … … 216 216 /** 217 217 * Adds a track or route to the internal track list. 218 *219 * @param trackName the track name220 218 */ 221 219 private void commitProfile() { -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/IGpxVisitor.java
r32775 r34133 55 55 /** 56 56 * Visits a way point within a GPX route. 57 * @param route The route containing the way point.58 57 * @param wp The way point to visit. 59 58 */ -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/grid/EleVertex.java
r33215 r34133 96 96 /** 97 97 * Checks if vertex requires further processing or is finished. Currently this 98 * method returns <code>true</code>, if the average deviation is <5m98 * method returns <code>true</code>, if the average deviation is < 5m 99 99 * 100 100 * @return true, if is finished … … 149 149 * @param index the index between 0 and NPOINTS: 150 150 * @return the elevation coordinate instance 151 * @throws IllegalArgumentException ,if index is invalid151 * @throws IllegalArgumentException if index is invalid 152 152 */ 153 153 public EleCoordinate get(int index) { -
applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gui/Triangle.java
r32775 r34133 13 13 14 14 /** 15 * Class to represent a triangle shape. 15 16 * @author Oliver Wieland <oliver.wieland@online.de> 16 * Class to represent a triangle shape. {@see java.awt.Shape}.17 * @see java.awt.Shape 17 18 */ 18 19 public class Triangle implements Shape {
Note:
See TracChangeset
for help on using the changeset viewer.