Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Orekit
Orekit
Commits
3f6502d7
Commit
3f6502d7
authored
Feb 22, 2021
by
Bryan Cazabonne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LegendrePolynomials classes are static.
parent
e2c7ab7e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/main/java/org/orekit/models/earth/troposphere/GlobalMappingFunctionModel.java
.../models/earth/troposphere/GlobalMappingFunctionModel.java
+2
-2
src/main/java/org/orekit/models/earth/troposphere/ViennaThreeModel.java
...org/orekit/models/earth/troposphere/ViennaThreeModel.java
+2
-2
No files found.
src/main/java/org/orekit/models/earth/troposphere/GlobalMappingFunctionModel.java
View file @
3f6502d7
...
...
@@ -380,7 +380,7 @@ public class GlobalMappingFunctionModel implements MappingFunction {
* IERS Technical Note No. 36, BKG (2010)
* </p>
*/
private
class
LegendrePolynomials
{
private
static
class
LegendrePolynomials
{
/** Array for the Legendre polynomials. */
private
double
[][]
pCoef
;
...
...
@@ -442,7 +442,7 @@ public class GlobalMappingFunctionModel implements MappingFunction {
* IERS Technical Note No. 36, BKG (2010)
* </p>
*/
private
class
FieldLegendrePolynomials
<
T
extends
RealFieldElement
<
T
>>
{
private
static
class
FieldLegendrePolynomials
<
T
extends
RealFieldElement
<
T
>>
{
/** Array for the Legendre polynomials. */
private
T
[][]
pCoef
;
...
...
src/main/java/org/orekit/models/earth/troposphere/ViennaThreeModel.java
View file @
3f6502d7
...
...
@@ -402,7 +402,7 @@ public class ViennaThreeModel implements DiscreteTroposphericModel {
* The computation of the Legendre polynomials is performed following:
* Heiskanen and Moritz, Physical Geodesy, 1967, eq. 1-62
*/
private
class
LegendrePolynomials
{
private
static
class
LegendrePolynomials
{
/** Array for the Legendre polynomials. */
private
double
[][]
pCoef
;
...
...
@@ -465,7 +465,7 @@ public class ViennaThreeModel implements DiscreteTroposphericModel {
* IERS Technical Note No. 36, BKG (2010)
* </p>
*/
private
class
FieldLegendrePolynomials
<
T
extends
RealFieldElement
<
T
>>
{
private
static
class
FieldLegendrePolynomials
<
T
extends
RealFieldElement
<
T
>>
{
/** Array for the Legendre polynomials. */
private
T
[][]
pCoef
;
...
...
Write
Preview
Markdown
is supported
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