This json-ld template is used to store metadata information commonly used to describe photovoltaic (PV) systems. There is information included on the location, modules, time series measurements, electrical properties, and weather conditions. Note that a lot of the material included in this json pulls from the OrangeButton Taxonomy.
library(FAIRmaterials)
# An example data frame for PV Systems
<- data.frame('Latitude' = c(30.1702, 28.32048),
system_example 'ProdMfr' = c('CSI', 'FirstSolar'),
'SystemID' = c('s1435', 's1284'))
# This will generate JSON-LD file for the example data
<- fairify_data(system_example, domain = 'PVSystem', saveLocal = TRUE) output
from fairmaterials.fairify_data import *
import pandas as pd
# An example data frame for PV Modules
= {'Latitude' : [30.1702, 28.32048],
system_example 'ProdMfr' : ['CSI', 'FirstSolar'],
'SystemID' : ['s1435', 's1284']}
= pd.DataFrame(system_example)
module_example
# This will generate JSON-LD file for the example data
<- fairify_data(system_example, domain = 'PVSystem') output
PV Module schema diagram
This material is based upon work supported by the U.S. Department of Energy’s Office of Energy Efficiency and Renewable Energy (EERE) under Solar Energy Technologies Office (SETO) Agreement Number DE-EE0009353.