Skip to content
Snippets Groups Projects
Commit dd755395 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Renamed package dem into raster.

parent dd7086c5
No related branches found
No related tags found
No related merge requests found
Showing
with 29 additions and 29 deletions
...@@ -21,7 +21,7 @@ import org.orekit.bodies.GeodeticPoint; ...@@ -21,7 +21,7 @@ import org.orekit.bodies.GeodeticPoint;
import org.orekit.errors.OrekitException; import org.orekit.errors.OrekitException;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.TileUpdater; import org.orekit.rugged.api.TileUpdater;
import org.orekit.rugged.core.dem.IntersectionAlgorithm; import org.orekit.rugged.core.raster.IntersectionAlgorithm;
/** Intersection ignoring Digital Elevation Model. /** Intersection ignoring Digital Elevation Model.
* <p> * <p>
......
...@@ -47,8 +47,8 @@ import org.orekit.rugged.api.SatellitePV; ...@@ -47,8 +47,8 @@ import org.orekit.rugged.api.SatellitePV;
import org.orekit.rugged.api.SatelliteQ; import org.orekit.rugged.api.SatelliteQ;
import org.orekit.rugged.api.SensorPixel; import org.orekit.rugged.api.SensorPixel;
import org.orekit.rugged.api.TileUpdater; import org.orekit.rugged.api.TileUpdater;
import org.orekit.rugged.core.dem.IntersectionAlgorithm;
import org.orekit.rugged.core.duvenhage.DuvenhageAlgorithm; import org.orekit.rugged.core.duvenhage.DuvenhageAlgorithm;
import org.orekit.rugged.core.raster.IntersectionAlgorithm;
import org.orekit.time.AbsoluteDate; import org.orekit.time.AbsoluteDate;
import org.orekit.time.TimeScale; import org.orekit.time.TimeScale;
import org.orekit.time.TimeScalesFactory; import org.orekit.time.TimeScalesFactory;
......
...@@ -26,9 +26,9 @@ import org.orekit.rugged.api.RuggedException; ...@@ -26,9 +26,9 @@ import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.RuggedMessages; import org.orekit.rugged.api.RuggedMessages;
import org.orekit.rugged.api.TileUpdater; import org.orekit.rugged.api.TileUpdater;
import org.orekit.rugged.core.ExtendedEllipsoid; import org.orekit.rugged.core.ExtendedEllipsoid;
import org.orekit.rugged.core.dem.IntersectionAlgorithm; import org.orekit.rugged.core.raster.IntersectionAlgorithm;
import org.orekit.rugged.core.dem.Tile; import org.orekit.rugged.core.raster.Tile;
import org.orekit.rugged.core.dem.TilesCache; import org.orekit.rugged.core.raster.TilesCache;
/** Digital Elevation Model intersection using Duvenhage's algorithm. /** Digital Elevation Model intersection using Duvenhage's algorithm.
* <p> * <p>
......
...@@ -19,8 +19,8 @@ package org.orekit.rugged.core.duvenhage; ...@@ -19,8 +19,8 @@ package org.orekit.rugged.core.duvenhage;
import org.apache.commons.math3.analysis.BivariateFunction; import org.apache.commons.math3.analysis.BivariateFunction;
import org.apache.commons.math3.analysis.function.Max; import org.apache.commons.math3.analysis.function.Max;
import org.apache.commons.math3.analysis.function.Min; import org.apache.commons.math3.analysis.function.Min;
import org.orekit.rugged.core.dem.SimpleTile; import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.dem.Tile; import org.orekit.rugged.core.raster.Tile;
/** Simple implementation of a {@link Tile} with a min/max kd tree. /** Simple implementation of a {@link Tile} with a min/max kd tree.
* @see MinMaxTreeTileFactory * @see MinMaxTreeTileFactory
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
*/ */
package org.orekit.rugged.core.duvenhage; package org.orekit.rugged.core.duvenhage;
import org.orekit.rugged.core.dem.TileFactory; import org.orekit.rugged.core.raster.TileFactory;
/** Simple implementation of a {@link TileFactory} for {@link MinMaxTreeTile}. /** Simple implementation of a {@link TileFactory} for {@link MinMaxTreeTile}.
* @author Luc Maisonobe * @author Luc Maisonobe
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.apache.commons.math3.geometry.euclidean.threed.Vector3D; import org.apache.commons.math3.geometry.euclidean.threed.Vector3D;
import org.orekit.bodies.GeodeticPoint; import org.orekit.bodies.GeodeticPoint;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.apache.commons.math3.util.FastMath; import org.apache.commons.math3.util.FastMath;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
......
...@@ -14,9 +14,9 @@ ...@@ -14,9 +14,9 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.orekit.rugged.core.dem.TileFactory; import org.orekit.rugged.core.raster.TileFactory;
/** Simple implementation of a {@link TileFactory} for {@link SimpleTile}. /** Simple implementation of a {@link TileFactory} for {@link SimpleTile}.
* @author Luc Maisonobe * @author Luc Maisonobe
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.UpdatableTile; import org.orekit.rugged.api.UpdatableTile;
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
/** Interface representing a factory for raster tile. /** Interface representing a factory for raster tile.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import java.lang.reflect.Array; import java.lang.reflect.Array;
import java.util.ArrayList; import java.util.ArrayList;
...@@ -25,7 +25,7 @@ import java.util.List; ...@@ -25,7 +25,7 @@ import java.util.List;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.TileUpdater; import org.orekit.rugged.api.TileUpdater;
import org.orekit.rugged.core.dem.Tile.Location; import org.orekit.rugged.core.raster.Tile.Location;
/** Cache for Digital Elevation Model {@link Tile tiles}. /** Cache for Digital Elevation Model {@link Tile tiles}.
* <p> * <p>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.apache.commons.math3.util.FastMath; import org.apache.commons.math3.util.FastMath;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
......
...@@ -14,11 +14,11 @@ ...@@ -14,11 +14,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.orekit.rugged.core.dem.SimpleTile; import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.dem.SimpleTileFactory; import org.orekit.rugged.core.raster.SimpleTileFactory;
import org.orekit.rugged.core.dem.TileFactory; import org.orekit.rugged.core.raster.TileFactory;
public class CountingFactory implements TileFactory<SimpleTile> { public class CountingFactory implements TileFactory<SimpleTile> {
......
...@@ -14,17 +14,17 @@ ...@@ -14,17 +14,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.apache.commons.math3.util.FastMath; import org.apache.commons.math3.util.FastMath;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.api.RuggedMessages; import org.orekit.rugged.api.RuggedMessages;
import org.orekit.rugged.core.dem.SimpleTile; import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.dem.SimpleTileFactory; import org.orekit.rugged.core.raster.SimpleTileFactory;
import org.orekit.rugged.core.dem.Tile; import org.orekit.rugged.core.raster.Tile;
import org.orekit.rugged.core.dem.Tile.Location; import org.orekit.rugged.core.raster.Tile.Location;
public class SimpleTileTest { public class SimpleTileTest {
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.orekit.rugged.core.dem; package org.orekit.rugged.core.raster;
import org.apache.commons.math3.random.RandomGenerator; import org.apache.commons.math3.random.RandomGenerator;
import org.apache.commons.math3.random.Well19937a; import org.apache.commons.math3.random.Well19937a;
...@@ -22,8 +22,8 @@ import org.apache.commons.math3.util.FastMath; ...@@ -22,8 +22,8 @@ import org.apache.commons.math3.util.FastMath;
import org.junit.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;
import org.orekit.rugged.api.RuggedException; import org.orekit.rugged.api.RuggedException;
import org.orekit.rugged.core.dem.SimpleTile; import org.orekit.rugged.core.raster.SimpleTile;
import org.orekit.rugged.core.dem.TilesCache; import org.orekit.rugged.core.raster.TilesCache;
public class TilesCacheTest { public class TilesCacheTest {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment