package Mqttmessage.Entity;
|
|
|
|
|
|
public class BasestationData {
|
|
private String latitude_dm;
|
private String latitude_hemisphere;
|
private String longitude_dm;
|
private String longitude_hemisphere;
|
private double altitude;
|
|
|
public BasestationData(String latitude_dm, String latitude_hemisphere,
|
String longitude_dm, String longitude_hemisphere,
|
double altitude) {
|
this.latitude_dm = latitude_dm;
|
this.latitude_hemisphere = latitude_hemisphere;
|
this.longitude_dm = longitude_dm;
|
this.longitude_hemisphere = longitude_hemisphere;
|
this.altitude = altitude;
|
}
|
|
public String getLatitude_dm() {
|
return latitude_dm;
|
}
|
|
public void setLatitude_dm(String latitude_dm) {
|
this.latitude_dm = latitude_dm;
|
}
|
|
public String getLatitude_hemisphere() {
|
return latitude_hemisphere;
|
}
|
|
public void setLatitude_hemisphere(String latitude_hemisphere) {
|
this.latitude_hemisphere = latitude_hemisphere;
|
}
|
|
public String getLongitude_dm() {
|
return longitude_dm;
|
}
|
|
public void setLongitude_dm(String longitude_dm) {
|
this.longitude_dm = longitude_dm;
|
}
|
|
public String getLongitude_hemisphere() {
|
return longitude_hemisphere;
|
}
|
|
public void setLongitude_hemisphere(String longitude_hemisphere) {
|
this.longitude_hemisphere = longitude_hemisphere;
|
}
|
|
public double getAltitude() {
|
return altitude;
|
}
|
|
public void setAltitude(double altitude) {
|
this.altitude = altitude;
|
}
|
}
|