Skip to content

Commit

Permalink
v5.23rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmuller committed Sep 9, 2024
1 parent 9aecbb3 commit ae658bd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 6 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Comp V5.23 (next version):
- proj 6 > 8.2
Comp3D V5.23:
- update licence info
- proj 6 > 8/9
- new rot export xyz
- faster solver solver
- change sigma_total
- cmake
- sigma factor applicable to cartesian and polar subframes
- native windows compliation
- website


2 changes: 1 addition & 1 deletion src/compile.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@


//---------------------------------- Settings ------------------------------------
#define COMP3D_VERSION "COMP3D v5.23dev" "-PROJ " PROJ_VERSION "-" COMPILED_FOR
#define COMP3D_VERSION "COMP3D v5.23rc1" "-PROJ " PROJ_VERSION "-" COMPILED_FOR
#define COMP3D_COPYRIGHT "Copyright 1992-2024 IGN France www.ign.fr"
#define COMP3D_LICENSE "Provided with absolutely no warranty, under GPLv3 license"
#define COMP3D_CONTACT "comp3d@ign.fr"
Expand Down
5 changes: 4 additions & 1 deletion src/station_axis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ bool Station_Axis::read_obs(std::string line,
for (auto &aobs: target.allAxisObs)
{
#ifdef INFO_AXE
std::cout<<"Checking "<<aobs->getPosNum()<<"-"<<target->getTargetNum()<<" "<<aobs->getPt()->name<<"\n";
std::cout<<"Checking "<<aobs.getPosNum()<<"-"<<target.getTargetNum()<<" "<<aobs.getPt()->name<<"\n";
#endif
ret = pointsSet.insert(aobs.getPt()->name);
if (!ret.second)
Expand Down Expand Up @@ -532,6 +532,9 @@ bool Station_Axis::initialize(bool verbose)
origin()->name.c_str());
return false;
}
#ifdef INFO_AXE
std::cout<<"Station_Axis::initialize best_target_wingspan: "<<best_target_wingspan<<"\n";
#endif

//get 3 good positions of that target
auto bestPos=best_target->get3BestPos();
Expand Down

0 comments on commit ae658bd

Please sign in to comment.