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 a v a 2 s . c o m public class GpsReading { public Double longitude; public Double latitude; public Long timestamp; public double accuracy; public GpsReading(double lon, double lat, Long ts, double acc) { this.longitude = lon; this.latitude = lat; this.timestamp = ts; this.accuracy = acc; } }