You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
recent_power: The mean power over the last 30 minutes
h_mean: The mean of the recent pv data over the last 7 days
h_median: The median of the recent pv data over the last 7 days
h_max: The max of the recent pv data over the last 7 days
For the time being, gathering the last 30 mins average power and feeding it to this model and testing it is our priority
Context
This will allow the user to get the most recent data from their enphase system
Possible Implementation
Hitting the /api/v4/systems/{system_id}/telemetry/production_micro endpoint of the v4 API of enphase and calibrating it by testing different start /end times with the correct granularity(5 or 15mins for this) and converting it to a particular data format (as needed by pv-site-prediction)
The text was updated successfully, but these errors were encountered:
the end_at is calculated as min(time_of_req, (start_time + granularity))
So if the granularity is set to day , it automatically takes the former i.e. time_of_req
Hence, the start time has to be taken as 30mins before the current time and granularity should be set to day(or week), so that the minimum of the 2 calculated variables is always the time_of_req
The Open Source Quartz Solar Forecast requires the following variables:
For the time being, gathering the last 30 mins average power and feeding it to this model and testing it is our priority
Context
This will allow the user to get the most recent data from their enphase system
Possible Implementation
Hitting the
/api/v4/systems/{system_id}/telemetry/production_micro
endpoint of the v4 API of enphase and calibrating it by testing different start /end times with the correct granularity(5 or 15mins for this) and converting it to a particular data format (as needed by pv-site-prediction)The text was updated successfully, but these errors were encountered: