-
Notifications
You must be signed in to change notification settings - Fork 1
/
cobot_config.yaml
60 lines (58 loc) · 2.24 KB
/
cobot_config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# This file is part of the Open Robot Database by Jörn Malzahn available at https://github.com/joernmalzahn/OpenRobotDatabase.
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
# To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.
#
# The information in this file is provided "as is" without warranty of any kind. The maintainer of this file exercises reasonable efforts to
# include accurate and up-to-date information; he, however, does not make any warranties or representations as to its accuracy or completeness.
# Information in this file may periodically be added, changed, or updated without notice.
#
# If you make decisions based on the data provided in the Open Robot Database including any of its files, you do so at your own risk and it is strongly
# recommended to verify the information contained in this file through other channels.
#
# The information in this file is made available in the hope that it will be helpful to others. Contributions in the form of feedback, corrections, data, code, etc. is highly welcome and will
# be credited. Please visit https://github.com/joernmalzahn/OpenRobotDatabase/blob/master/README.md on how to get in touch and provide feedback.
---
columns : {
name : {
address : [],
attribute : 'text NOT NULL UNIQUE'
},
manufacturer : {
address : [],
attribute : 'text NOT NULL'
},
payload mass : {
address : ['mechanical properties'],
attribute : 'integer NOT NULL'
},
max reach : {
address : ['mechanical properties'],
attribute : 'integer NOT NULL'
},
max cartesian velocity : {
address : ['mechanical properties'],
attribute : 'integer'
},
repeatability : {
address : ['mechanical properties'],
attribute : 'float'
},
robot mass : {
address : ['mechanical properties'],
attribute : 'integer'
},
videos : {
address : [],
attribute : 'text'
},
website : {
address : [],
attribute : 'text NOT NULL'
},
}
links : {
manufacturers : {
local_column : 'manufacturer',
remote_column : 'name'
}
}