Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VIPSCore-Python
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
VIPS
VIPSCore-Python
Commits
5d0a4602
Commit
5d0a4602
authored
2 years ago
by
Tor-Einar Skog
Browse files
Options
Downloads
Patches
Plain Diff
Adapted to localhost/REFERENCEM
parent
eb858c85
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
endpoint_tests/run_REFERENCEM.py
+10
-13
10 additions, 13 deletions
endpoint_tests/run_REFERENCEM.py
with
10 additions
and
13 deletions
endpoint_tests/run_REFERENCEM.py
+
10
−
13
View file @
5d0a4602
...
...
@@ -33,13 +33,13 @@ from dateutil import parser
weather_data_source_name
=
"
LMT
"
weather_data_source_uri
=
"
https://lmt.nibio.no/services/rest/vips/getdata/forecastfallback?weatherStationId=%s&%s
"
weather_param_string
=
"
elementMeasurementTypes[]=TM&
elementMeasurementTypes[]=RR&elementMeasurementTypes[]=BT&
logInterval=1
h
&startDate=2016-03-01&startTime=00&endDate=2016-09-30&endTime=00&timeZone=Europe/Oslo
"
weather_param_string
=
"
elementMeasurementTypes[]=TM&logInterval=1
d
&startDate=2016-03-01&startTime=00&endDate=2016-09-30&endTime=00&timeZone=Europe/Oslo
"
# Which VIPSCore system to connect to
core_server_uri
=
"
http
s
://
coremanager.testvips.nibio.no
"
core_server_uri
=
"
http://
localhost:8001
"
# The unique identificator for the Apple Scab model
model_id
=
"
APPLESCAB
M
"
model_id
=
"
REFERENCE
M
"
print
(
"
Downloading weather data from %s, please wait...
"
%
weather_data_source_name
)
weather_data_request
=
requests
.
get
(
weather_data_source_uri
%
(
"
5
"
,
weather_param_string
))
...
...
@@ -49,17 +49,13 @@ weather_data_request = requests.get( weather_data_source_uri % ("5", weather_par
#print(weather_data_request.text)
weather_data
=
weather_data_request
.
json
()
print
(
"
Sending request to VIPS, waiting for calculation results, please wait...
"
)
print
(
"
Sending request to VIPS
Core-Python
, waiting for calculation results, please wait...
"
)
# Building the request with config values and weather data to send to VIPS
model_config
=
{
"
loginInfo
"
:
{
"
username
"
:
"
testuser
"
,
"
password
"
:
"
testpass
"
},
"
modelId
"
:
"
APPLESCABM
"
,
"
modelId
"
:
"
REFERENCEM
"
,
"
configParameters
"
:
{
"
timeZone
"
:
"
Europe/Oslo
"
,
"
s
tartDateAscosporeMaturity
"
:
"
2016-03-10
"
,
#
APPLESCAB
M Specific configuration value
"
s
owingDate
"
:
"
2016-03-10
"
,
#
REFERENCE
M Specific configuration value
"
observations
"
:
weather_data
}
}
...
...
@@ -71,11 +67,12 @@ for result in results:
# Create a Python timestamp from the JSON timestamp string
timestamp
=
parser
.
parse
(
result
[
"
validTimeStart
"
])
# Printing selected result parameters to stdout
#print(result)
allValues
=
json
.
loads
(
result
[
"
allValues
"
])
print
(
"
%s:
Ascospore maturation
= %s, Accumulated
Mill
s = %s, Warning status = %s
"
%
(
print
(
"
%s:
Mean temp today
= %s, Accumulated
Day Degree
s = %s, Warning status = %s
"
%
(
datetime
.
strftime
(
timestamp
,
'
%Y-%m-%dT%H:%M %Z
'
),
allValues
[
"
APPLESCABM.ASCMAT
"
]
,
allValues
[
"
APPLESCABM.ACCMILLS
"
]
,
allValues
.
get
(
"
TM
"
)
,
allValues
.
get
(
"
TMDD
"
)
,
result
[
"
warningStatus
"
]
)
)
\ No newline at end of file
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