From fe73311756b88d47742edc0d178df6c115a02b33 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe <luc@orekit.org> Date: Fri, 13 Feb 2015 09:23:26 +0100 Subject: [PATCH] Updated documentation after wiki update. --- src/site/markdown/tutorials/direct-location-with-DEM.md | 4 ++-- src/site/markdown/tutorials/inverse-location.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/site/markdown/tutorials/direct-location-with-DEM.md b/src/site/markdown/tutorials/direct-location-with-DEM.md index dfc90145..6d33ef00 100644 --- a/src/site/markdown/tutorials/direct-location-with-DEM.md +++ b/src/site/markdown/tutorials/direct-location-with-DEM.md @@ -29,7 +29,7 @@ The calling application must implement the callback function for loading the til ### Implementing the interface TileUpdater for DEM loading. -In this tutorial, we will not include real DEM data. Instead we are going to create a fake DEM representing a volcanoe in a form of a perfect cone, similar to the Mayon volcano in the Philippines, except that we will locate it somewhere just below our satellite. This example is already part of Rugged tests cases, the source code is available in the package `org.orekit.rugged.raster`, file VolcanicConeElevationUpdater.java. +In this tutorial, we will not include real DEM data. Instead we are going to create a fake DEM representing a volcano in a form of a perfect cone, similar to the Mayon volcano in the Philippines, except that we will locate it somewhere just below our satellite. This example is already part of Rugged tests cases, the source code is available in the package `org.orekit.rugged.raster`, file VolcanicConeElevationUpdater.java. The class `VolcanicConeElevationUpdater` implements the interface `TileUpdater` with its method `updateTile`. The method is in charge of loading a tile. The extent of the tile must be such that it covers at least the ground point with coordinates (latitude, longitude) which are passed as arguments to the method. The tile is an object of type `UpdatableTile` which has two methods : @@ -169,4 +169,4 @@ In a similar way as in the first tutorial [DirectLocation](./direct-location.htm } ## Source code -The source code is available in DirectLocationGrid.java +The source code is available in DirectLocationWithDEM.java diff --git a/src/site/markdown/tutorials/inverse-location.md b/src/site/markdown/tutorials/inverse-location.md index 6cce44a6..bf455331 100644 --- a/src/site/markdown/tutorials/inverse-location.md +++ b/src/site/markdown/tutorials/inverse-location.md @@ -51,4 +51,4 @@ Similarly, for a point defined solely by its latitude en longitude (altitude det AbsoluteDate dateLine = rugged.dateLocation(sensorName, latitude, longitude, minLine, maxLine); ## Source code -The source code is available in InverseLocTutorial.java +The source code is available in InverseLocation.java -- GitLab