]> gitweb.fperrin.net Git - GpsPrune.git/blob - src/tim/prune/function/olc/OlcArea.java
Version 20, March 2020
[GpsPrune.git] / src / tim / prune / function / olc / OlcArea.java
1 package tim.prune.function.olc;
2
3 /**
4  * Class to represent the result of an OLC decoding
5  */
6 public class OlcArea
7 {
8         public double minLat = 0.0;
9         public double maxLat = 0.0;
10         public double minLon = 0.0;
11         public double maxLon = 0.0;
12
13         /** Constructor */
14         public OlcArea(double inMinLat, double inMinLon, double inMaxLat, double inMaxLon)
15         {
16                 minLat = inMinLat;
17                 minLon = inMinLon;
18                 maxLat = inMaxLat;
19                 maxLon = inMaxLon;
20         }
21 }