예제 #1
0
파일: gga.cpp 프로젝트: mariokonrad/marnav
void gga::set_lon(const geo::longitude & t)
{
	lon_ = t;
	lon_hem_ = convert_hemisphere(t);
}
예제 #2
0
파일: rma.cpp 프로젝트: nohal/marnav
void rma::set_lon(const geo::longitude & t)
{
	lon = t;
	lon_hem = convert_hemisphere(t);
}
예제 #3
0
파일: gga.cpp 프로젝트: mariokonrad/marnav
void gga::set_lat(const geo::latitude & t)
{
	lat_ = t;
	lat_hem_ = convert_hemisphere(t);
}
예제 #4
0
파일: rma.cpp 프로젝트: nohal/marnav
void rma::set_lat(const geo::latitude & t)
{
	lat = t;
	lat_hem = convert_hemisphere(t);
}