Uses of Class
net.ubisoa.geolocation.data.Location

Packages that use Location
net.ubisoa.geolocation   
net.ubisoa.geolocation.data   
net.ubisoa.geolocation.tools   
 

Uses of Location in net.ubisoa.geolocation
 

Methods in net.ubisoa.geolocation that return Location
 Location LocationCore.estimate(java.lang.String platform, java.lang.String signalData)
           
 Location LocationCore.getCentroid(java.util.Vector<Location> locations)
           
 

Methods in net.ubisoa.geolocation that return types with arguments of type Location
 java.util.Vector<Location> LocationCore.getSignalsByBSSID(java.lang.String platform, java.lang.String bssid)
           
 java.util.Vector<Location> LocationCore.getSignalsByBSSIDs(java.lang.String platform, java.util.Set<java.lang.String> bssids)
           
 java.util.Vector<Location> LocationCore.getSignalsTest()
           
 

Methods in net.ubisoa.geolocation with parameters of type Location
static float LocationCore.evaluateSignal(Location estimation, java.lang.String signal)
           
 

Method parameters in net.ubisoa.geolocation with type arguments of type Location
 Location LocationCore.getCentroid(java.util.Vector<Location> locations)
           
 

Uses of Location in net.ubisoa.geolocation.data
 

Methods in net.ubisoa.geolocation.data that return Location
 Location Location.clone()
           
 

Methods in net.ubisoa.geolocation.data with parameters of type Location
 int SignalComparator.compare(Location signalA, Location signalB)
           
static double Location.distance(Location from, Location to)
          Calculates the distances between two location points.
 

Method parameters in net.ubisoa.geolocation.data with type arguments of type Location
static void Location.printCollection(java.util.Collection<Location> collection, java.lang.String signal)
           
 

Uses of Location in net.ubisoa.geolocation.tools
 

Methods in net.ubisoa.geolocation.tools that return Location
 Location[] Map.getBorderCoords()
           
 Location Map.latLongToNorm(Location location)
           
 Location Map.normToLatLong(Location location)
          Formule is: lat = x1 + x*(x2-x1) + y*(x3-x1) + x*y*(x1-x2-x3+x4); lon = y1 + x*(y2-y1) + y*(y3-y1) + x*y*(y1-y2-y3+y4);
 

Methods in net.ubisoa.geolocation.tools with parameters of type Location
 Location Map.latLongToNorm(Location location)
           
 Location Map.normToLatLong(Location location)
          Formule is: lat = x1 + x*(x2-x1) + y*(x3-x1) + x*y*(x1-x2-x3+x4); lon = y1 + x*(y2-y1) + y*(y3-y1) + x*y*(y1-y2-y3+y4);
 void Map.setBorderCoords(Location[] borderCoords)