Skip to content

Commit 5aebe5b

Browse files
committed
Updated static site for 1.0 release.
1 parent 2dce117 commit 5aebe5b

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<version>1.0</version>
88
<packaging>jar</packaging>
99
<name>Rugged</name>
10+
<url>https://www.orekit.org/rugged</url>
1011

1112
<inceptionYear>2014</inceptionYear>
1213
<description>

src/site/markdown/contact.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Contacts
1818
Mailing lists
1919
-------------
2020

21-
Most discussions should occur on the public mailing lists. As Rugged
22-
heavily depends on Orekit, they share the same low traffic announces list.
21+
Most discussions should occur on the public mailing lists.
2322

2423
| topic | post address | subscribe URL | archive URL |
2524
|---------------|------------------------------|--------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------|

src/site/markdown/downloads.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,43 @@ Rugged is also available in maven central repository,
4343
with groupID org.orekit and artifactId rugged so maven
4444
internal mechanism will download automatically all artifacts and dependencies
4545
as required.
46+
47+
| package | link |
48+
|----------|-----------------------------------------------------------------------------------------------------------|
49+
| source | [rugged-1.0-sources.zip](https://www.orekit.org/forge/attachments/download/592/rugged-1.0-sources.zip) |
50+
| binary | [rugged-1.0.jar](https://www.orekit.org/forge/attachments/download/593/rugged-1.0.jar) |
51+
| javadoc | [rugged-1.0-javadoc.jar](https://www.orekit.org/forge/attachments/download/594/rugged-1.0-javadoc.jar) |
52+
version 1.0 downloads (release date: 2016-02-10)
53+
54+
## Data
55+
56+
For convenience, a zip archive containing some configuration data is
57+
available for download. Similar files can be custom made by users with updated data.
58+
Configuring data loading is explained in the configuration page For a start, the simplest configuration
59+
is to download the orekit-data.zip file from the download page, to unzip it anywhere you want, note the
60+
path of the orekit-data folder that will be created and add the following lines at the start of
61+
your program:
62+
63+
File orekitData = new File("/path/to/the/folder/orekit-data");
64+
DataProvidersManager manager = DataProvidersManager.getInstance();
65+
manager.addProvider(new DirectoryCrawler(orekitData));
66+
67+
This file contents is:
68+
69+
* leap seconds data up to early 2016,
70+
71+
* IERS Earth orientation parameters from 1973 to mid 2014
72+
with predicted date to end 2014 for some parameters (both IAU-1980 and IAU-2000),
73+
74+
* Marshall Solar Activity Futur Estimation from 1999 to 2014,
75+
76+
* DE 430 planetary ephemerides from 1990 to 2069,
77+
78+
* Eigen 06S gravity field.
79+
80+
There are no guarantees that this file will be available indefinitely or that its
81+
content will be updated. It should be considered as a simple configuration example.
82+
Users are encouraged to set up their own configuration data.
83+
84+
The file is available by following this link: [orekit-data.zip](https://www.orekit.org/forge/attachments/download/584/orekit-data.zip).
85+

0 commit comments

Comments
 (0)