Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Orekit
Orekit
Commits
44faa1fe
Commit
44faa1fe
authored
Jul 26, 2017
by
Luc Maisonobe
Browse files
Finalized Orekit 9.0.
parent
906fb37c
Changes
6
Hide whitespace changes
Inline
Side-by-side
BUILDING.txt
View file @
44faa1fe
...
...
@@ -32,14 +32,11 @@ Building with Ant:
Building with Eclipse:
- Eclipse can be downloaded here:
http://www.eclipse.org/downloads/
- extract the orekit source jar in your eclipse workspace
- create a new java project from existing sources and direct
Eclipse to the directory where you unpacked Orekit
- set the source folders to orekit/src/main/java,
orekit/src/main/resources, orekit/src/test/java,
orekit/src/test/resources, orekit/src/tutorials in
the source tab of the Configure Build Path dialog
- set the external libraries to JRE system library (provided by Eclipse),
Junit 4.x (provided by Eclipse) and Hipparchus (available at
https://hipparchus.org/) in the libraries tab of the Configure
Build Path dialog
- using your operating system tools, unpack the source distribution directly
inside your Eclipse workspace
- using Eclipse, import the project by selecting in the top level "File" menu
the entry "Import..."
- in the wizard that should appear, select "Maven -> Existing Maven Projects"
- select the folder you just created in your workspace by unpacking the
source distribution. The "pom.xml" file describing the project will be
automatically selected. Click finish
build.xml
View file @
44faa1fe
...
...
@@ -2,7 +2,7 @@
<project
name=
"orekit"
default=
"jar"
basedir=
"."
>
<property
name=
"project.version"
value=
"9.0
-SNAPSHOT
"
/>
<property
name=
"project.version"
value=
"9.0"
/>
<property
name=
"src.dir"
location=
"src"
/>
<property
name=
"main.src.dir"
value=
"${src.dir}/main/java"
/>
...
...
checkstyle.xml
View file @
44faa1fe
...
...
@@ -72,30 +72,30 @@
SR_ASSIGN, STAR, STAR_ASSIGN"
/>
</module>
<module
name=
"FileContentsHolder"
/>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop JavadocVariable check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume JavadocVariable check"
/>
<property
name=
"checkFormat"
value=
"JavadocVariable"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop VisibilityModifierCheck"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume VisibilityModifierCheck"
/>
<property
name=
"checkFormat"
value=
"VisibilityModifierCheck"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop NoWhitespaceAfter"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume NoWhitespaceAfter"
/>
<property
name=
"checkFormat"
value=
"NoWhitespaceAfter"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop FallThrough check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume FallThrough check"
/>
<property
name=
"checkFormat"
value=
"FallThrough"
/>
</module>
</module>
<module
name=
"RegexpHeader"
>
<property
name=
"headerFile"
value=
"${checkstyle.header.file}"
/>
</module>
<module
name=
"FileTabCharacter"
/>
<module
name=
"NewlineAtEndOfFile"
/>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop JavadocVariable check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume JavadocVariable check"
/>
<property
name=
"checkFormat"
value=
"JavadocVariable"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop VisibilityModifierCheck"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume VisibilityModifierCheck"
/>
<property
name=
"checkFormat"
value=
"VisibilityModifierCheck"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop NoWhitespaceAfter"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume NoWhitespaceAfter"
/>
<property
name=
"checkFormat"
value=
"NoWhitespaceAfter"
/>
</module>
<module
name=
"SuppressionCommentFilter"
>
<property
name=
"offCommentFormat"
value=
"CHECKSTYLE\: stop FallThrough check"
/>
<property
name=
"onCommentFormat"
value=
"CHECKSTYLE\: resume FallThrough check"
/>
<property
name=
"checkFormat"
value=
"FallThrough"
/>
</module>
</module>
pom.xml
View file @
44faa1fe
...
...
@@ -5,7 +5,7 @@
<groupId>
org.orekit
</groupId>
<artifactId>
orekit
</artifactId>
<packaging>
jar
</packaging>
<version>
9.0
-SNAPSHOT
</version>
<version>
9.0
</version>
<name>
ORbit Extrapolation KIT
</name>
<url>
http://www.orekit.org/
</url>
...
...
@@ -26,20 +26,20 @@
<orekit.maven-bundle-plugin.version>
3.3.0
</orekit.maven-bundle-plugin.version>
<orekit.maven-changes-plugin.version>
2.12.1
</orekit.maven-changes-plugin.version>
<orekit.maven-checkstyle-plugin.version>
2.17
</orekit.maven-checkstyle-plugin.version>
<orekit.checkstyle.version>
7.6
</orekit.checkstyle.version>
<orekit.checkstyle.version>
8.1
</orekit.checkstyle.version>
<orekit.maven-clean-plugin.version>
3.0.0
</orekit.maven-clean-plugin.version>
<orekit.maven-compiler-plugin.version>
3.6.1
</orekit.maven-compiler-plugin.version>
<orekit.maven-javadoc-plugin.version>
2.10.4
</orekit.maven-javadoc-plugin.version>
<orekit.maven-jar-plugin.version>
3.0.2
</orekit.maven-jar-plugin.version>
<orekit.maven-jxr-plugin.version>
2.5
</orekit.maven-jxr-plugin.version>
<orekit.plantuml-maven-plugin.version>
1.2
</orekit.plantuml-maven-plugin.version>
<orekit.plantuml.version>
2017.1
0
</orekit.plantuml.version>
<orekit.plantuml.version>
1.
2017.1
5
</orekit.plantuml.version>
<orekit.maven-project-info-reports-plugin.version>
2.9
</orekit.maven-project-info-reports-plugin.version>
<orekit.maven-resources-plugin.version>
3.0.2
</orekit.maven-resources-plugin.version>
<orekit.maven-site-plugin.version>
3.6
</orekit.maven-site-plugin.version>
<orekit.maven-source-plugin.version>
3.0.1
</orekit.maven-source-plugin.version>
<orekit.maven-surefire-plugin.version>
2.
19.1
</orekit.maven-surefire-plugin.version>
<orekit.maven-surefire-report-plugin.version>
2.
19.1
</orekit.maven-surefire-report-plugin.version>
<orekit.maven-surefire-plugin.version>
2.
20
</orekit.maven-surefire-plugin.version>
<orekit.maven-surefire-report-plugin.version>
2.
20
</orekit.maven-surefire-report-plugin.version>
<orekit.jgit.buildnumber.version>
1.2.10
</orekit.jgit.buildnumber.version>
<orekit.hipparchus.version>
1.1
</orekit.hipparchus.version>
<orekit.junit.version>
4.12
</orekit.junit.version>
...
...
@@ -76,14 +76,21 @@
<roles>
<role>
developer
</role>
</roles>
</developer>
</developer>
<developer>
<name>
Hank Grabowski
</name>
<id>
hankg
</id>
<roles>
<role>
developer
</role>
</roles>
</developer>
</developer>
<developer>
<name>
Maxime Journot
</name>
<id>
maxime
</id>
<roles>
<role>
developer
</role>
</roles>
</developer>
<developer>
<name>
Fabien Maussion
</name>
<roles>
...
...
@@ -139,13 +146,6 @@
<role>
developer
</role>
</roles>
</developer>
<developer>
<name>
Maxime Journot
</name>
<id>
maxime
</id>
<roles>
<role>
developer
</role>
</roles>
</developer>
</developers>
<contributors>
...
...
src/site/markdown/downloads.md
View file @
44faa1fe
...
...
@@ -43,10 +43,10 @@ as required.
| package | link |
|----------|-----------------------------------------------------------------------------------------------------------|
| source |
[
orekit-9.0-sources.zip
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-9.0-sources.zip
)
|
| binary |
[
orekit-9.0.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-9.0.jar
)
|
| javadoc |
[
orekit-9.0-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
xxx
/orekit-9.0-javadoc.jar
)
|
version 9.0 downloads (release date: 2017-07-2
5
)
| source |
[
orekit-9.0-sources.zip
](
https://www.orekit.org/forge/attachments/download/
663
/orekit-9.0-sources.zip
)
|
| binary |
[
orekit-9.0.jar
](
https://www.orekit.org/forge/attachments/download/
664
/orekit-9.0.jar
)
|
| javadoc |
[
orekit-9.0-javadoc.jar
](
https://www.orekit.org/forge/attachments/download/
665
/orekit-9.0-javadoc.jar
)
|
version 9.0 downloads (release date: 2017-07-2
6
)
| package | link |
|----------|-----------------------------------------------------------------------------------------------------------|
...
...
@@ -154,12 +154,12 @@ your program:
This file contents is:
*
leap seconds data up to e
arly
201
6
,
*
leap seconds data up to e
nd
201
7
,
*
IERS Earth orientation parameters from 1973 to mid 201
4
with predicted date to
end
201
4
for some parameters (both IAU-1980 and IAU-2000),
*
IERS Earth orientation parameters from 1973 to mid 201
7
with predicted date to
fall
201
7
for some parameters (both IAU-1980 and IAU-2000),
*
Marshall Solar Activity Futur Estimation from 1999 to 201
4
,
*
Marshall Solar Activity Futur
e
Estimation from 1999 to 201
7
,
*
DE 430 planetary ephemerides from 1990 to 2069,
...
...
@@ -169,4 +169,4 @@ There are no guarantees that this file will be available indefinitely or that it
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:
[
o
rekit
-data.zip
](
https://www.orekit.org/forge/
attachments/download/610/orekit-data.zip
)
.
The file is available by following this link:
[
O
rekit
files
](
https://www.orekit.org/forge/
projects/orekit/files
)
.
src/site/xdoc/changes.xml
View file @
44faa1fe
...
...
@@ -20,7 +20,20 @@
<title>
Orekit Changes
</title>
</properties>
<body>
<release
version=
"9.0"
date=
"TBD"
description=
"TBD"
>
<release
version=
"9.0"
date=
"2017-07-26"
description=
"Version 9.0 is a major release of Orekit. It introduces several new
features and bug fixes. New features introduced in version 9.0 are Taylor algebra
propagation (for high order uncertainties propagation or very fast Monte-Carlo
studies), multi-satellites orbit determination, parallel multi-satellites propagation,
parametric accelerations (polynomial and harmonic), turn-around measurements,
inter-satellite range measurements, rigth ascension/declination measurements,
Antenna Phase Center measurements modifiers, EOP estimation in precise orbit
determination, orbit to attitude coupling in partial derivatives, parsing of CCSDM
Tracking Data Messages, parsing of university of Bern Astronomical Institute files
for Klobuchar coefficients, ITRF 2014, preservation of non-Keplerian orbits derivatives,
JB2008 atmosphere model, NRL MSISE 2000 atmosphere model, boolean combination of events
detectors, ephemeris writer, speed improvements when tens of thousands of measurements
are used in orbit determination, Danish translations. Several bugs have been fixed."
>
<action
dev=
"luc"
type=
"add"
>
Added on-board antenna phase center effect on inter-satellites range measurements.
</action>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment