-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdatapackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
datapackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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-Photovoltaic-Module-Database",
"title": "Open Source Database for Photovoltaic Modules",
"description": "This is an Open Source Database for Photovoltaic Modules. Everybody is welcome to contribute and use it.",
"licenses": [
{
"id": "MIT",
"name": "MIT License",
"version": "",
"url": "http://opensource.org/licenses/MIT"
}
],
"resources": [
{
"name": "modules",
"url": "https://github.com/PV-Log/Open-Photovoltaic-Module-Database/raw/master/data/modules.csv",
"path": "data/modules.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"id": "id",
"description": "Unique ID",
"type": "number"
},
{
"id": "supplier",
"description": "Supplier or Manufacturer of the Module",
"type": "string"
},
{
"id": "type",
"description": "Type or Model of the Module",
"type": "string"
},
{
"id": "nominal_power",
"description": "Nominal Power in Watts",
"type": "number"
},
{
"id": "cell_type",
"description": "Allowed Cell Types are: mono,poly,EFG (list must be extended)",
"type": "string"
}
]
}
}
]
}