
au.gov.amsa.sgb.decoder.EncodedGnssPosition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sgb-decoder Show documentation
Show all versions of sgb-decoder Show documentation
Decodes second generation Beacon detection messages and Beacon 23 Hex IDs
The newest version!
package au.gov.amsa.sgb.decoder;
public final class EncodedGnssPosition {
private final double lat;
private final double lon;
public EncodedGnssPosition(double lat, double lon) {
this.lat = lat;
this.lon = lon;
}
public double lat() {
return lat;
}
public double lon() {
return lon;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy