Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nanospace-demo
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nanostar
nanospace
nanospace-demo
Commits
ee3bb2f6
Commit
ee3bb2f6
authored
3 years ago
by
GATEAU Thibault
Browse files
Options
Downloads
Patches
Plain Diff
[dev] init scritp checking update instead of event managerg
parent
c4757da0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pythonAPI/checkUpToDate.py
+78
-0
78 additions, 0 deletions
pythonAPI/checkUpToDate.py
with
78 additions
and
0 deletions
pythonAPI/checkUpToDate.py
0 → 100644
+
78
−
0
View file @
ee3bb2f6
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 3 12:06:08 2021
@author: tgateau
"""
from
optparse
import
OptionParser
import
sys
,
traceback
defaultAltitudeID
=
1295
defaultAltitudeValue
=
424.0370523579581
#defaultServer = 'http://dcas-devel-1/api/'
defaultServer
=
'
https://dcas-nanostar.isae.fr/api/
'
defaultUser
=
'
user
'
defaultPwd
=
'
pass
'
parser
=
OptionParser
()
parser
.
add_option
(
"
-i
"
,
"
--altitudeID
"
,
dest
=
"
altitudeID
"
,
help
=
"
which nanospace ID correspond to the altitude.
"
,
default
=
defaultAltitudeID
)
parser
.
add_option
(
"
-a
"
,
"
--altitudeValue
"
,
dest
=
"
altitudeValue
"
,
help
=
"
attitude wanted
"
,
default
=
defaultAltitudeValue
)
parser
.
add_option
(
"
-s
"
,
"
--server
"
,
dest
=
"
server
"
,
help
=
"
which NSS server to connect with
"
,
default
=
defaultServer
)
parser
.
add_option
(
"
-u
"
,
"
--user
"
,
dest
=
"
user
"
,
help
=
"
your username in Nanospace UI
"
,
default
=
defaultUser
)
parser
.
add_option
(
"
-p
"
,
"
--pwd
"
,
dest
=
"
pwd
"
,
help
=
"
your password in Nanospace UI
"
,
default
=
defaultPwd
)
(
options
,
args
)
=
parser
.
parse_args
()
from
nanospace
import
Nanospace
nanospace
=
Nanospace
(
options
.
server
,
options
.
user
,
options
.
pwd
)
marginDownId
=
1734
try
:
#be carefull between string and formulas !! Check Python API...
oldAltitude
=
nanospace
.
get_formula_value
(
options
.
altitudeID
)
#print("Altitude value in Nanospace UI was (formula): "+str(oldAltitude))
except
ValueError
:
print
(
"
Are you sure that you
'
re using the right ID (
"
+
str
(
options
.
altitudeID
)
+
"
)?
"
)
print
(
"
Exception in user code:
"
)
print
(
'
-
'
*
60
)
traceback
.
print_exc
(
file
=
sys
.
stdout
)
print
(
'
-
'
*
60
)
try
:
#be carefull between string and formulas !! Check Python API...
marginDown
=
nanospace
.
get_formula_value
(
marginDownId
)
#print("marginDownId value in Nanospace UI was (formula): "+str(marginDown))
except
ValueError
:
print
(
"
Are you sure that you
'
re using the right ID (
"
+
str
(
marginDownId
)
+
"
)?
"
)
print
(
"
Exception in user code:
"
)
print
(
'
-
'
*
60
)
traceback
.
print_exc
(
file
=
sys
.
stdout
)
print
(
'
-
'
*
60
)
oldAltitude
=
oldAltitude
.
replace
(
'
*
'
,
''
)
oldAltitude
=
oldAltitude
.
replace
(
'
[km]
'
,
''
)
res
=
True
if
(
float
(
oldAltitude
)
>=
750
):
print
(
"
Warning: LOS requirements may be violated due to field ID (
"
+
str
(
options
.
altitudeID
)
+
"
): altitude <
"
+
oldAltitude
+
"
>
"
)
res
=
False
if
(
float
(
marginDown
)
<
10
):
print
(
"
Warning: margins requirements may be violated due to field ID (
"
+
str
(
marginDownId
)
+
"
): marginDown <
"
+
marginDown
+
"
>
"
)
res
=
False
if
res
:
print
(
"
All seem OK!
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
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