Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
access-node
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LuFG VR VIS
VR-Group
In Situ Pipeline
access-node
Commits
eeb57bb7
Commit
eeb57bb7
authored
5 years ago
by
Jan Müller
Browse files
Options
Downloads
Patches
Plain Diff
Remov notion of Measurement_point (those are now probes)
parent
1a2f0bc9
No related branches found
No related tags found
1 merge request
!4
Feature/add arbor support
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
access_node/models/measurement_point.py
+0
-116
0 additions, 116 deletions
access_node/models/measurement_point.py
with
0 additions
and
116 deletions
access_node/models/measurement_point.py
deleted
100644 → 0
+
0
−
116
View file @
1a2f0bc9
# coding: utf-8
from
__future__
import
absolute_import
from
datetime
import
date
,
datetime
# noqa: F401
from
typing
import
List
,
Dict
# noqa: F401
from
access_node.models.base_model_
import
Model
from
access_node
import
util
class
MeasurementPoint
(
Model
):
"""
NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
def
__init__
(
self
,
id
:
int
=
None
,
cell_id
:
int
=
None
,
position
:
float
=
None
):
# noqa: E501
"""
MeasurementPoint - a model defined in Swagger
:param id: The id of this MeasurementPoint. # noqa: E501
:type id: int
:param cell_id: The cell_id of this MeasurementPoint. # noqa: E501
:type cell_id: int
:param position: The position of this MeasurementPoint. # noqa: E501
:type position: float
"""
self
.
swagger_types
=
{
'
id
'
:
int
,
'
cell_id
'
:
int
,
'
position
'
:
float
}
self
.
attribute_map
=
{
'
id
'
:
'
id
'
,
'
cell_id
'
:
'
cell_id
'
,
'
position
'
:
'
position
'
}
self
.
_id
=
id
self
.
_cell_id
=
cell_id
self
.
_position
=
position
@classmethod
def
from_dict
(
cls
,
dikt
)
->
'
MeasurementPoint
'
:
"""
Returns the dict as a model
:param dikt: A dict.
:type: dict
:return: The MeasurementPoint of this MeasurementPoint. # noqa: E501
:rtype: MeasurementPoint
"""
return
util
.
deserialize_model
(
dikt
,
cls
)
@property
def
id
(
self
)
->
int
:
"""
Gets the id of this MeasurementPoint.
:return: The id of this MeasurementPoint.
:rtype: int
"""
return
self
.
_id
@id.setter
def
id
(
self
,
id
:
int
):
"""
Sets the id of this MeasurementPoint.
:param id: The id of this MeasurementPoint.
:type id: int
"""
self
.
_id
=
id
@property
def
cell_id
(
self
)
->
int
:
"""
Gets the cell_id of this MeasurementPoint.
:return: The cell_id of this MeasurementPoint.
:rtype: int
"""
return
self
.
_cell_id
@cell_id.setter
def
cell_id
(
self
,
cell_id
:
int
):
"""
Sets the cell_id of this MeasurementPoint.
:param cell_id: The cell_id of this MeasurementPoint.
:type cell_id: int
"""
self
.
_cell_id
=
cell_id
@property
def
position
(
self
)
->
float
:
"""
Gets the position of this MeasurementPoint.
:return: The position of this MeasurementPoint.
:rtype: float
"""
return
self
.
_position
@position.setter
def
position
(
self
,
position
:
float
):
"""
Sets the position of this MeasurementPoint.
:param position: The position of this MeasurementPoint.
:type position: float
"""
self
.
_position
=
position
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