Changeset 28353 in osm for applications/editors/josm/plugins/simplifyarea/src/sk
- Timestamp:
- 2012-04-25T18:29:19+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaAction.java
r27905 r28353 191 191 final Collection<Command> avgCommands = averageNearbyNodes(ways, nodesReallyToRemove); 192 192 if (avgCommands != null) { 193 allCommands.add(new SequenceCommand( "average nearby nodes", avgCommands));193 allCommands.add(new SequenceCommand(tr("average nearby nodes"), avgCommands)); 194 194 } 195 195 -
applications/editors/josm/plugins/simplifyarea/src/sk/zdila/josm/plugin/simplify/SimplifyAreaPreferenceSetting.java
r27857 r28353 32 32 33 33 public SimplifyAreaPreferenceSetting() { 34 super("simplifyArea", "Simplify Area","Node of the way (area) is removed if all of <u>Angle Weight</u>, <u>Area Weight</u> and <u>Distance Weight</u> are greater than 1. " +34 super("simplifyArea", tr("Simplify Area"), tr("Node of the way (area) is removed if all of <u>Angle Weight</u>, <u>Area Weight</u> and <u>Distance Weight</u> are greater than 1. " + 35 35 "<u>Weight</u> is computed as <u>Value</u> / <u>Threshold</u>, where <u>Value</u> is one of <u>Angle</u>, <u>Area</u> and <u>Distance</u> " + 36 36 "computed from every three adjanced points of the way." + … … 40 40 "All three <u>Weight</u>s multiplied by its <u>Factor</u>s are summed and node of the lowest sum is removed first. " + 41 41 "Removal continues until there is no node to remove." + 42 "Merge Nearby Nodes is another step of the simplification that merges adjanced nodes that are closer than <u>Threshold</u> meters.") ;42 "Merge Nearby Nodes is another step of the simplification that merges adjanced nodes that are closer than <u>Threshold</u> meters.")); 43 43 } 44 44
Note:
See TracChangeset
for help on using the changeset viewer.