X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=src%2Ftim%2Fprune%2Ffunction%2Folc%2FOlcArea.java;fp=src%2Ftim%2Fprune%2Ffunction%2Folc%2FOlcArea.java;h=bc7a3e8392fffd3644adf8c0d3d2542743f50383;hp=0000000000000000000000000000000000000000;hb=8b20e3e027058cdf6ff52993ee5576193d08667a;hpb=2302358503c38817e19f6e529f6c9e530aac0e86 diff --git a/src/tim/prune/function/olc/OlcArea.java b/src/tim/prune/function/olc/OlcArea.java new file mode 100644 index 0000000..bc7a3e8 --- /dev/null +++ b/src/tim/prune/function/olc/OlcArea.java @@ -0,0 +1,21 @@ +package tim.prune.function.olc; + +/** + * Class to represent the result of an OLC decoding + */ +public class OlcArea +{ + public double minLat = 0.0; + public double maxLat = 0.0; + public double minLon = 0.0; + public double maxLon = 0.0; + + /** Constructor */ + public OlcArea(double inMinLat, double inMinLon, double inMaxLat, double inMaxLon) + { + minLat = inMinLat; + minLon = inMinLon; + maxLat = inMaxLat; + maxLon = inMaxLon; + } +}