SGL-UT / GPSTk

ATTENTION: This repository has been moved and is for archival purposes only. GPSTk toolkit has been renamed to GNSSTK and has been split into two new separate repositories. GNSSTK now only contains libraries while the other repository GNSSTK-APPS contains only applications. The rename and split into libraries and applications started with version v12.0.0 on September 2021. GPSTk --> GNSSTK at https://gitlab.com/sgl-ut/gnsstk --> GNSSTK-APPS at https://gitlab.com/sgl-ut/gnsstk-apps
Other
339 stars 182 forks source link

A typo in "NeillTropModel::setAllParameters" #40

Open vdmitriev90 opened 6 years ago

vdmitriev90 commented 6 years ago

instead of this:

      NeillLat = rxPos.getGeodeticLatitude();
      validHeight = true;
      NeillLat = rxPos.getHeight();
      validLat = true;

should be this:

      NeillLat = rxPos.getGeodeticLatitude();
      validLat = true;
      NeillHeight = rxPos.getHeight();
      validHeight = true;
vdmitriev90 commented 6 years ago

the same issue is take place in MOPSTropModel::setAllParameters

UT-dave commented 3 years ago

Thanks much for finding this! Just added a fix. A major new version of GPSTk will be pushed later this summer.