summaryrefslogtreecommitdiffstats
path: root/src/host/gsmmap/locate.h
diff options
context:
space:
mode:
authorAndreas.Eversberg2010-10-24 16:12:58 +0200
committerAndreas.Eversberg2010-10-24 16:12:58 +0200
commita8ac4bb2dffe2dfe8030ad9f34ec10a4f9684d54 (patch)
treed384bb6d5a3b626f60d26ea452790b0ea7454801 /src/host/gsmmap/locate.h
parent[layer23] Adding application to scan/receive and log SYSTEM INFORMATIONS (diff)
downloadosmocom-a8ac4bb2dffe2dfe8030ad9f34ec10a4f9684d54.tar.gz
osmocom-a8ac4bb2dffe2dfe8030ad9f34ec10a4f9684d54.tar.xz
osmocom-a8ac4bb2dffe2dfe8030ad9f34ec10a4f9684d54.zip
Introducing "gsmmap" to convert SYSTEM INFORMATION log into a KML map
Diffstat (limited to 'src/host/gsmmap/locate.h')
-rw-r--r--src/host/gsmmap/locate.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/host/gsmmap/locate.h b/src/host/gsmmap/locate.h
new file mode 100644
index 0000000..2613345
--- /dev/null
+++ b/src/host/gsmmap/locate.h
@@ -0,0 +1,8 @@
+
+struct probe {
+ struct probe *next;
+ double x, y, dist;
+};
+
+int locate_cell(struct probe *probe_first, double *min_x, double *min_y);
+