-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathquick_install_guide_ngsiV2.sh
284 lines (275 loc) · 5.94 KB
/
quick_install_guide_ngsiV2.sh
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
################################################################################
# Licensed to the FIWARE Foundation (FF) under one
# or more contributor license agreements. The FF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
# This script helps you to install a NGSI v2 in a linux server (ubuntu 18.04)
# for full instructions and issues go to FIWARE main page at this link
#
# https://fiware-tutorials.readthedocs.io/en/latest/
# 1.- if your are coming from a clean installation
sudo docker pull mongo:3.6
sudo docker pull fiware/orion
sudo docker network create fiware_default
sudo docker run -d --name=mongo-db --network=fiware_default --expose=27017 mongo:3.6 --bind_ip_all --smallfiles
sudo docker run -d --name fiware-orion -h orion --network=fiware_default -p 1026:1026 fiware/orion -dbhost mongo-db
# 2.- In case you already had a installation it is better to run these instructions first to (1)
docker stop fiware-orion
docker rm fiware-orion
docker stop mongo-db
docker rm mongo-db
docker network rm fiware_default
# 3.- Check that your installation is up and running
curl -X GET 'http://localhost:1026/version'
# 4.- Create your first entity
curl -iX POST 'http://localhost:1026/v2/entities' -H 'Content-Type: application/json' -d '
{
"id": "urn:ngsi-ld:PhotovoltaicDevice:PhotovoltaicDevice:MNCA-PV-T2-R-012",
"type": "PhotovoltaicDevice",
"name": {
"type": "Property",
"value": "DEVICE-PV-T2-R-012"
},
"alternateName": {
"type": "Property",
"value": "AirPort – global Observation"
},
"description": {
"type": "Property",
"value": "Photo-voltaic Device description"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates ": [43.664810, 7.196545]
}
},
"address": {
"type": "Property",
"value": {
"addressCountry": "FR",
"addressLocality": "Nice",
"streetAddress": "Airport - Terminal 2 - Roof 2 - Local 12"
}
},
"areaServed": {
"type": "Property",
"value": "Nice Aeroport"
},
"refDevice": {
"type": "Relationship",
"value": "urn:ngsi-ld:Device:PV-T2-R-012"
},
"brandname": {
"type": "Property",
"value": "Canadian Solar"
},
"modelName": {
"type": "Property",
"value": "CS6P-270P"
},
"manufacturerName": {
"type": "Property",
"value": "Canadian Solar EMEA GmbH,"
},
"serialNumber": {
"type": "Property",
"value": ["CSPV270P-SN1804L6J34Z8742H",
"CSPV270P-SN1804L6J34Z8743H",
"CSPV270P-SN1804L6J34Z8744H",
"CSPV270P-SN1804L6J34Z8745H",
"CSPV270P-SN1804L6J34Z8746H"
]
},
"application": {
"type": "Property",
"value": "electric"
},
"cellType": {
"type": "Property",
"value": "polycrystalline"
},
"instalationMode": {
"type": "Property",
"value": "roofing"
},
"instalationCondition": {
"type": "Property",
"value": ["extremeHeat", "extremeCold", "extremeClimate", "desert"]
},
"possibilityOfUsed": {
"type": "Property",
"value": "stationary"
},
"integrationMode": {
"type": "Property",
"value": "IAB"
},
"documentation": {
"type": "Property",
"value": "https://www.myDevicePV.Cn"
},
"owner": {
"type": "Property",
"value": ["Airport-Division Maintenance"]
},
"cellDimension": {
"type": "Property",
"value": {
"length": 16.0,
"width": 9.0,
"thickness": 2.3
}
},
"moduleNbCells": {
"type": "Property",
"value": 60
},
"moduleDimension": {
"type": "Property",
"value": {
"length": 1600,
"width": 975,
"thickness": 3.75
}
},
"panelNbModules": {
"type": "Property",
"value": 1
},
"panelDimension": {
"type": "Property",
"value": {
"length": 1638,
"width": 982,
"thickness": 40
}
},
"panelWeight": {
"type": "Property",
"value": 18
},
"arealWeight": {
"type": "Property",
"value": 32
},
"maxPressureLoad": {
"type": "Property",
"value": {
"hail": 2500,
"snow": 5400,
"wind": 2400
}
},
"NominalPower": {
"type": "Property",
"value": 270
},
"MaximumSystemVoltage": {
"type": "Property",
"value": 1000
},
"applicationClass": {
"type": "Property",
"value": "A"
},
"fireClass": {
"type": "Property",
"value": "C"
},
"pTCClass": {
"type": "Property",
"value": 92.1
},
"nTCClass": {
"type": "Property",
"value": 88.3
},
"protectionIP": {
"type": "Property",
"value": "IP67"
},
"moduleSTC": {
"type": "Property",
"value": {
"Pmax": 270,
"Umpp": 30.8,
"Impp": 8.75,
"Uoc": 37.9,
"Isc": 9.32
}
},
"moduleNOCT": {
"type": "Property",
"value": {
"Pmax": 196,
"Umpp": 28.1,
"Impp": 6.97,
"Uoc": 34.8,
"Isc": 7.55
}
},
"moduleYieldRate": {
"type": "Property",
"value": 16.79
},
"panelOperatingTemperature": {
"type": "Property",
"value": {
"min": -40,
"max": 85
}
},
"cellOperatingTemperature": {
"type": "Property",
"value": {
"min": 45,
"max": 2
}
},
"temperatureCoefficient": {
"type": "Property",
"value": {
"Pmax": -0.41,
"Uoc": -0.31,
"Isc": 0.053
}
},
"performanceLowIrradiance": {
"type": "Property",
"value": 96.5
},
"panelLifetime": {
"type": "Property",
"value": 30
},
"panelYieldCurve": {
"type": "Property",
"value": ["95.0", "92.5", "90.0", "87.5", "85.0", "80.0"]
},
"panelYieldRate": {
"type": "Property",
"value": 0.5
},
"panelTiltReference": {
"type": "Property",
"value": {
"min": 28,
"max": 37
}
}
}
'
# 5.- List the entity you have created
curl -G -X GET 'http://localhost:1026/v2/entities' -d 'options=keyValues'