Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
Orekit Python Wrapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit Labs
Orekit Python Wrapper
Commits
bbca7902
"git@gitlab.orekit.org:orekit/rugged.git" did not exist on "c2ddfe7848b37f049eef454d4ebfac8f8ad9730b"
Commit
bbca7902
authored
4 years ago
by
Clément Jonglez
Committed by
Petrus Hyvönen
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make setup_orekit_curdir optionally load data from folder
parent
943cae0f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python_files/pyhelpers.py
+17
-6
17 additions, 6 deletions
python_files/pyhelpers.py
with
17 additions
and
6 deletions
python_files/pyhelpers.py
+
17
−
6
View file @
bbca7902
...
...
@@ -24,9 +24,10 @@ import shutil
from
datetime
import
datetime
import
math
import
os
from
java.io
import
File
from
orekit
import
JArray
from
org.orekit.data
import
DataProvidersManager
,
ZipJarCrawler
from
org.orekit.data
import
DataProvidersManager
,
ZipJarCrawler
,
DirectoryCrawler
from
org.orekit.time
import
TimeScalesFactory
,
AbsoluteDate
from
org.orekit.utils
import
ElevationMask
...
...
@@ -58,22 +59,27 @@ def download_orekit_data_curdir(filename='orekit-data.zip'):
def
setup_orekit_curdir
(
filename
=
'
orekit-data.zip
'
):
"""
Setup the java engine with orekit.
This function loads the orekit-data.zip from the current directory
and sets up the Orekit DataProviders to access it.
This function loads the Orekit data from either:
- A zip in the current directory (by default orekit-data.zip),
- A folder,
depending on whether `filename` is the path to a file or to a folder.
Then the function sets up the Orekit DataProviders to access it.
The JVM needs to be initiated prior to calling this function:
orekit.initVM()
Args:
filename (str): Name of zip with orekit data. Default filename is
'
orekit-data.zip
'
filename (str): Name of zip or folder with orekit data. Default filename is
'
orekit-data.zip
'
"""
DM
=
DataProvidersManager
.
getInstance
()
datafile
=
File
(
filename
)
if
not
datafile
.
exists
():
print
(
'
File :
'
,
datafile
.
absolutePath
,
'
not found
'
)
print
(
'
File
or folder
:
'
,
datafile
.
absolutePath
,
'
not found
'
)
print
(
"""
The Orekit library relies on some external data for physical models.
...
...
@@ -90,7 +96,12 @@ def setup_orekit_curdir(filename='orekit-data.zip'):
"""
)
crawler
=
ZipJarCrawler
(
datafile
)
if
os
.
path
.
isdir
(
filename
):
crawler
=
DirectoryCrawler
(
datafile
)
elif
os
.
path
.
isfile
(
filename
):
crawler
=
ZipJarCrawler
(
datafile
)
else
:
print
(
'
filename
'
,
filename
,
'
is neither a file nor a folder
'
)
DM
.
clearProviders
()
DM
.
addProvider
(
crawler
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment