All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IndoorGeoreferencer.h
1 // Copyright eeGeo Ltd (2012-2015), All Rights Reserved
2 
3 #pragma once
4 
5 #include "LatLongAltitude.h"
6 #include "VectorMath.h"
7 #include "Interiors.h"
8 
9 
10 namespace Eegeo
11 {
12  namespace Space
13  {
15  {
16  public:
17 
18  IndoorGeoreferencer(const Eegeo::Space::LatLong& point1LatLong, float point1mapX, float point1mapY,
19  const Eegeo::Space::LatLong& point2LatLong, float point2mapX, float point2mapY,
20  const Eegeo::Space::LatLong& point3LatLong, float point3mapX, float point3mapY);
21 
22  Eegeo::Space::LatLong MapPointToLatLong(float mapX, float mapY);
23 
24  private:
25  Eegeo::dv3 m_originEcef;
26  Eegeo::dv3 m_primaryEcefDirection;
27  Eegeo::dv3 m_secondaryEcefDirection;
28  Eegeo::dv2 m_originMap;
29  Eegeo::dv2 m_primaryMapDirection;
30  Eegeo::dv2 m_secondaryMapDirection;
31  };
32  }
33 }