source: osm/applications/editors/josm/plugins/ElevationProfile/src/org/openstreetmap/josm/plugins/elevation/gpx/GeoidCorrectionKind.java@ 29907

Last change on this file since 29907 was 29907, checked in by oliverw, 11 years ago

Begun elevation grid layer (see #1729).

File size: 1.0 KB
Line 
1/**
2 * This program is free software: you can redistribute it and/or modify it under
3 * the terms of the GNU General Public License as published by the
4 * Free Software Foundation, either version 3 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 * See the GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License along with this program.
12 * If not, see <http://www.gnu.org/licenses/>.
13 */
14
15package org.openstreetmap.josm.plugins.elevation.gpx;
16
17/**
18 * @author Oliver Wieland <oliver.wieland@online.de>
19 * Enumeration for available elevation correction modes.
20 */
21public enum GeoidCorrectionKind {
22 /** Elevation values remain unchanged */
23 None,
24 /** Automatic correction by geoid lookup table */
25 Auto,
26 /** Fixed value */
27 Fixed
28}
Note: See TracBrowser for help on using the repository browser.