From 5aebe5b5a9486181f99d4158ac3c884b637dcd6e Mon Sep 17 00:00:00 2001 From: Luc Maisonobe <luc@orekit.org> Date: Wed, 10 Feb 2016 10:47:19 +0100 Subject: [PATCH] Updated static site for 1.0 release. --- pom.xml | 1 + src/site/markdown/contact.md | 3 +-- src/site/markdown/downloads.md | 40 ++++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dedd74d1..eb472a92 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ <version>1.0</version> <packaging>jar</packaging> <name>Rugged</name> + <url>https://www.orekit.org/rugged</url> <inceptionYear>2014</inceptionYear> <description> diff --git a/src/site/markdown/contact.md b/src/site/markdown/contact.md index 0bc74878..dac36c8c 100644 --- a/src/site/markdown/contact.md +++ b/src/site/markdown/contact.md @@ -18,8 +18,7 @@ Contacts Mailing lists ------------- -Most discussions should occur on the public mailing lists. As Rugged -heavily depends on Orekit, they share the same low traffic announces list. +Most discussions should occur on the public mailing lists. | topic | post address | subscribe URL | archive URL | |---------------|------------------------------|--------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------| diff --git a/src/site/markdown/downloads.md b/src/site/markdown/downloads.md index 36dc3560..2fe495e8 100644 --- a/src/site/markdown/downloads.md +++ b/src/site/markdown/downloads.md @@ -43,3 +43,43 @@ Rugged is also available in maven central repository, with groupID org.orekit and artifactId rugged so maven internal mechanism will download automatically all artifacts and dependencies as required. + +| package | link | +|----------|-----------------------------------------------------------------------------------------------------------| +| source | [rugged-1.0-sources.zip](https://www.orekit.org/forge/attachments/download/592/rugged-1.0-sources.zip) | +| binary | [rugged-1.0.jar](https://www.orekit.org/forge/attachments/download/593/rugged-1.0.jar) | +| javadoc | [rugged-1.0-javadoc.jar](https://www.orekit.org/forge/attachments/download/594/rugged-1.0-javadoc.jar) | +version 1.0 downloads (release date: 2016-02-10) + +## Data + +For convenience, a zip archive containing some configuration data is +available for download. Similar files can be custom made by users with updated data. +Configuring data loading is explained in the configuration page For a start, the simplest configuration +is to download the orekit-data.zip file from the download page, to unzip it anywhere you want, note the +path of the orekit-data folder that will be created and add the following lines at the start of +your program: + + File orekitData = new File("/path/to/the/folder/orekit-data"); + DataProvidersManager manager = DataProvidersManager.getInstance(); + manager.addProvider(new DirectoryCrawler(orekitData)); + +This file contents is: + + * leap seconds data up to early 2016, + + * IERS Earth orientation parameters from 1973 to mid 2014 + with predicted date to end 2014 for some parameters (both IAU-1980 and IAU-2000), + + * Marshall Solar Activity Futur Estimation from 1999 to 2014, + + * DE 430 planetary ephemerides from 1990 to 2069, + + * Eigen 06S gravity field. + +There are no guarantees that this file will be available indefinitely or that its +content will be updated. It should be considered as a simple configuration example. +Users are encouraged to set up their own configuration data. + +The file is available by following this link: [orekit-data.zip](https://www.orekit.org/forge/attachments/download/584/orekit-data.zip). + -- GitLab