forked from PV-Log/Open-Photovoltaic-Inverter-Database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatapackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
datapackage.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "Open-Inverter-Database",
"title": "Open Inverter Database for Photovoltaic Inverters",
"description": "This is an Open Source Database for Photovoltaic Inverters. Everybody is welcome to contribute and use it.",
"licenses": [
{
"id": "MIT",
"name": "MIT License",
"version": "",
"url": "http://opensource.org/licenses/MIT"
}
],
"resources": [
{
"name": "inverters",
"url": "https://github.com/PV-Log/Open-Inverter-Database/raw/master/data/inverters.csv",
"path": "data/inverters.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"id": "id",
"description": "Unique ID",
"type": "number"
},
{
"id": "supplier",
"description": "Supplier or Manufacturer of the Inverter",
"type": "string"
},
{
"id": "type",
"description": "Type or Model of the Inveter",
"type": "string"
},
{
"id": "nominal_power_ac",
"description": "Nominal Power AC in Watts",
"type": "number"
},
{
"id": "trafo_info",
"description": "Has Trafo (1), has no Trafo (0)",
"type": "number"
}
]
}
}
]
}