From 773fb64d259f70d472339c920a59cd7bf1cbc2bb Mon Sep 17 00:00:00 2001 From: Guylaine Prat <guylaine.prat@c-s.fr> Date: Wed, 16 Jan 2019 15:22:22 +0100 Subject: [PATCH] Update changes page --- .../orekit/rugged/linesensor/SensorPixel.java | 2 +- src/site/xdoc/changes.xml | 41 +++++++++++++++---- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/orekit/rugged/linesensor/SensorPixel.java b/src/main/java/org/orekit/rugged/linesensor/SensorPixel.java index 9174f4e0..a0f65e23 100644 --- a/src/main/java/org/orekit/rugged/linesensor/SensorPixel.java +++ b/src/main/java/org/orekit/rugged/linesensor/SensorPixel.java @@ -23,7 +23,6 @@ import java.io.Serializable; * Instances of this class are guaranteed to be immutable. * </p> * @author Luc Maisonobe - * @author Guylaine Prat */ public class SensorPixel implements Serializable { @@ -60,4 +59,5 @@ public class SensorPixel implements Serializable { public double getPixelNumber() { return pixelNumber; } + } diff --git a/src/site/xdoc/changes.xml b/src/site/xdoc/changes.xml index 4b29c2c1..649ffdeb 100644 --- a/src/site/xdoc/changes.xml +++ b/src/site/xdoc/changes.xml @@ -21,25 +21,50 @@ </properties> <body> <release version="2.1-SNAPSHOT" date="TBD" description="TTBD"> + <action dev="guylaine" type="update"> + Updated dependencies to Orekit 9.3 and Hipparchus 1.4. + </action> + <action dev="guylaine" type="fix" issue="373"> + Changed RuggedException from checked to unchecked exception. + Most functions do throw such exceptions. As they are unchecked, they are + not advertised in either `throws` statements in the function signature or + in the javadoc. So users must consider that as soon as they use any Rugged + feature, an unchecked `RuggedException` may be thrown. In most cases, users + will not attempt to recover for this but will only use them to display or + log a meaningful error message. + </action> + <action dev="guylaine" type="fix" issue="372"> + Add (optional) atmospheric refraction for inverse location. + In Rugged 2.0, only the direct location can take into account the atmospheric refraction. + </action> <action dev="guylaine" type="add" due-to="Issam Boukerch"> Changed terms for refining tutorials. The "fulcrum points" term is changed into "Ground Control Points (GCP)" and the "liaison points" term into "tie points". </action> - <action dev="guylaine" type="add" due-to="Roberto Alacevich"> - Added Italian translations of error messages. + <action dev="luc" type="fix" issue="371"> + For refining computation, correct the constructor of the class + adjustment.measurements.SensorToGroundMapping due to a parameters reversal error. </action> - <action dev="luc" type="add" due-to="Beatriz Salazar GarcÃa"> - Updated Spanish translations of error messages. + <action dev="guylaine" type="fix" issue="256"> + Bad check of maxDate validity in utils.SpacecraftToObservedBody.SpacecraftToObservedBody method. </action> + <action dev="luc" type="add" due-to="Lars Næsbye Christensen"> Updated Danish translations of error messages. </action> - <action dev="luc" type="fix"> - Fixed a parameters reversal error. - Fixes issue #371. + <action dev="luc" type="add" due-to="Roberto Alacevich"> + Updated Italian translations of error messages. + </action> + <action dev="guylaine" type="add" due-to="Espen Bjørntvedt"> + Updated Norwegian translations of error messages. + </action> + <action dev="luc" type="add" due-to="Beatriz Salazar GarcÃa"> + Updated Spanish translations of error messages. </action> - </release> + + </release> + <release version="2.0" date="2017-12-19" description="This is a major release. It mainly provides a refinement feature (i.e. adjusting the viewing model parameters to match ground control points."> -- GitLab