diff --git a/pom.xml b/pom.xml index dedd74d1f87911ff2d3a58952468cd5460b548a9..eb472a9264a1fd87c6e4e67037810bc232e96bdf 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 0bc74878d7c51f5a645c3c58c5f67fe5718f3cfa..dac36c8ca986cabcb1e8db85a82534f87eba7be3 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 36dc356036ca3970dfa263ffe9a60d7d54fe6870..2fe495e8bc85ca36122fb818456cdf7fd1860a30 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). +