Back to project page sonarlog.
The source code is released under:
GNU General Public License
If you think the Android project sonarlog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.sonarlog.ioio; //from w w w . j ava 2 s.c o m public class SonarReading { public double depth; public long timestamp; public double longitude; public double latitude; public double accuracy; public SonarReading(double d, long ts) { depth = d; timestamp = ts; } public void set_pos(double lon, double lat, double accuracy) { this.longitude = lon; this.latitude = lat; this.accuracy = accuracy; } }