summaryrefslogtreecommitdiffstats
path: root/lookup/RatioLut.java
diff options
context:
space:
mode:
authorRichard Zahoransky2011-11-07 16:29:56 +0100
committerRichard Zahoransky2011-11-07 16:29:56 +0100
commit08d5f7b0a0b24c042aa5976f66bf3a1b5b754478 (patch)
treeba5388774100c1b218cb264927c3bb3669fd7e06 /lookup/RatioLut.java
parentinit (diff)
downloadlocalization-08d5f7b0a0b24c042aa5976f66bf3a1b5b754478.tar.gz
localization-08d5f7b0a0b24c042aa5976f66bf3a1b5b754478.tar.xz
localization-08d5f7b0a0b24c042aa5976f66bf3a1b5b754478.zip
Localization Code. How-To will follow...
Diffstat (limited to 'lookup/RatioLut.java')
-rw-r--r--lookup/RatioLut.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/lookup/RatioLut.java b/lookup/RatioLut.java
new file mode 100644
index 0000000..9ead05e
--- /dev/null
+++ b/lookup/RatioLut.java
@@ -0,0 +1,41 @@
+package lookup;
+
+import java.util.LinkedList;
+import java.util.List;
+
+import DataStructure.GPScoordinate;
+import DataStructure.SingleBTS;
+
+/**
+ * there should be as many RatioLuts as there are entries in arfcn table. For
+ * every OpenBSC BTS one!
+ *
+ * @author richy
+ *
+ */
+public class RatioLut implements ILut {
+ public int bts; // to where are the ratios calculated
+
+ public RatioLut(int ARFCN) {
+ this.bts = ARFCN;
+ }
+
+ @Override
+ public LinkedList<GPScoordinate> get(SingleBTS MR) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public void fill(GPScoordinate where, SingleBTS what) {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public LinkedList<GPScoordinate> get(List<SingleBTS> MR) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+}