Skip to content

Commit e03dd28

Browse files
committed
fix: ProjectionUnitTest
1 parent 50133b3 commit e03dd28

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

Library/PAX_SAPIENTICA/System/Version.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@
3737
#define PAX_SAPIENTICA_LIBRARY_VERSION_NAME "1.4.0 MAKEMAKE"
3838
#endif
3939

40-
//char name[
41-
// 10
42-
// + ((PAX_SAPIENTICA_LIBRARY_PATCHLEVEL >= 10) ? 1 : 0)
43-
//];
44-
4540
/*##########################################################################################
4641
更新履歴
4742
バージョン | 更新日 | 概要
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#include <PAX_MAHOROBA/Map/Content/Feature/FlowCurveFeature.hpp>
2+
3+
int main(){}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#include <PAX_SAPIENTICA/Map/FlowCurveLocationPoint.hpp>
2+
3+
int main(){}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#include <PAX_SAPIENTICA/Map/Repository/FlowCurveRepository.hpp>
2+
3+
int main(){}

Projects/UnitTest/Source/PAX_SAPIENTICA/Geography/Coordinate/ProjectionUnitTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
#include <PAX_SAPIENTICA/Geography/Coordinate/Projection.hpp>
1515

16-
const paxs::MercatorDeg mercatorDeg({0.0, 0.0});
16+
const paxs::WebMercatorDeg mercatorDeg({0.0, 0.0});
1717

1818
TEST (MapProjectionUnitTest, toEquirectangularRadY) {
1919
double expected = 0.0;
20-
double actual = mercatorDeg.toEquirectangularRadY();
20+
double actual = mercatorDeg.toEPSG4326_WGS84RadY();
2121
ASSERT_EQ(expected, actual);
2222
}
2323

0 commit comments

Comments
 (0)