/home/martin/workspace/OpenStreetNav/src/projection/MapProjection.cpp
Go to the documentation of this file.
00001 /*
00002  * MapProjection.cpp
00003  *
00004  *  Created on: Nov 12, 2011
00005  *      Author: martin
00006  */
00007 
00008 #include "MapProjection.h"
00009 
00010 namespace proj
00011 {
00012 
00013 FlatPoint MapProjection::project(geo::Point const& p)
00014 {
00015     return project(p.lat, p.lon);
00016 }
00017 
00018 geo::Point MapProjection::unproject(FlatPoint const& p)
00019 {
00020     return unproject(p.x, p.y);
00021 }
00022 
00023 MapProjection::~MapProjection()
00024 {
00025 }
00026 
00027 } /* namespace geo */
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines