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
ea9c2e10
Commit
ea9c2e10
authored
3 years ago
by
GATEAU Thibault
Browse files
Options
Downloads
Patches
Plain Diff
[dev] using class
parent
ee3bb2f6
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
pythonAPI/checkUpToDate.py
+42
-38
42 additions, 38 deletions
pythonAPI/checkUpToDate.py
with
42 additions
and
38 deletions
pythonAPI/checkUpToDate.py
+
42
−
38
View file @
ea9c2e10
...
...
@@ -8,9 +8,8 @@ Created on Tue Aug 3 12:06:08 2021
from
optparse
import
OptionParser
import
sys
,
traceback
import
time
defaultAltitudeID
=
1295
defaultAltitudeValue
=
424.0370523579581
#defaultServer = 'http://dcas-devel-1/api/'
defaultServer
=
'
https://dcas-nanostar.isae.fr/api/
'
defaultUser
=
'
user
'
...
...
@@ -33,46 +32,51 @@ parser.add_option("-p", "--pwd", dest="pwd",
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
)
class
Var
:
def
__init__
(
self
,
nanospace_id
):
self
.
id
=
nanospace_id
self
.
val
=
'
?
'
def
__repr__
(
self
):
return
"
<
"
+
str
(
self
.
id
)
+
"
:
"
+
self
.
val
+
"
>
"
def
getVal
(
self
):
try
:
#be carefull between string and formulas !! Check Python API...
self
.
val
=
nanospace
.
get_formula_value
(
self
.
id
)
print
(
self
)
except
ValueError
:
print
(
"
Are you sure that you
'
re using the right ID (
"
+
str
(
self
.
idA
)
+
"
)?
"
)
print
(
"
Exception in user code:
"
)
print
(
'
-
'
*
60
)
traceback
.
print_exc
(
file
=
sys
.
stdout
)
print
(
'
-
'
*
60
)
def
setVal
(
self
):
nanospace
.
update_formula_value
(
84
,
'
multiplication
'
,
'
5*20
'
)
oldAltitude
=
oldAltitude
.
replace
(
'
*
'
,
''
)
oldAltitude
=
oldAltitude
.
replace
(
'
[km]
'
,
''
)
idA
=
2120
var_A
=
Var
(
idA
)
var_A
.
getVal
()
idB
=
2123
var_B
=
Var
(
idB
)
var_B
.
getVal
()
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!
"
)
dicoRelation
=
{
var_A
:
var_B
}
def
compute
():
#get list to run
var_B
.
setVal
(
s1
(
var_A
.
val
))
def
s1
(
val
):
return
val
*
val
while
(
True
):
time
.
sleep
(
1
)
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