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
Copy file name to clipboardExpand all lines: src/Solcast/Clients/ForecastClient.cs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -381,9 +381,9 @@ public async Task<ApiResponse<ForecastsDataResponse>> GetForecastRadiationAndWea
381
381
/// <param name="hours">The number of hours to return in the response. Default is 24.</param>
382
382
/// <param name="period">Length of the averaging period in ISO 8601 format. Default is PT30M.</param>
383
383
/// <param name="depoVelocPm10">Deposition or settling velocity of PM2.5 particulates. [m/s]. Default is 0.0009.</param>
384
-
/// <param name="depoVelocPm25">Deposition or settling velocity of PM10 particulates. [m/s]. Default is 0.004.</param>
384
+
/// <param name="depoVelocPm2_5">Deposition or settling velocity of PM10 particulates. [m/s]. Default is 0.004.</param>
385
385
/// <param name="pm10">Restricted. A list of PM10 values. Concentration of airborne particulate matter (PM) with aerodynamicdiameter less than 10 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
386
-
/// <param name="pm25">Restricted. Concentration of airborne particulate matter (PM) with aerodynamic diameter less than 2.5 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
386
+
/// <param name="pm2_5">Restricted. Concentration of airborne particulate matter (PM) with aerodynamic diameter less than 2.5 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
387
387
/// <param name="tilt">The angle (degrees) that the PV system is tilted off the horizontal. A tilt of 0 means the system faces directly upwards, and 90 means the system is vertical and facing the horizon. If you don't specify tilt, we use a default tilt angle based on the latitude you specify in your request. Must be between 0 and 90.</param>
388
388
/// <param name="cleaningThreshold">Amount of daily rainfall required to clean the panels (mm). Default is 6.0.</param>
389
389
/// <param name="initialSoiling">Initial percentage of energy lost due to soiling at time zero in the rainfall series input. If not provided, Solcast will perform a ramp up series calculation to accurately determine this value. If provided must be >= 0 and < 0.3437.</param>
@@ -398,9 +398,9 @@ public async Task<ApiResponse<ForecastsDataResponse>> GetForecastHsu(
398
398
int?hours=null,
399
399
stringperiod=null,
400
400
double?depoVelocPm10=null,
401
-
double?depoVelocPm25=null,
401
+
double?depoVelocPm2_5=null,
402
402
List<double?>pm10=null,
403
-
List<double?>pm25=null,
403
+
List<double?>pm2_5=null,
404
404
double?tilt=null,
405
405
double?cleaningThreshold=null,
406
406
double?initialSoiling=null,
@@ -419,14 +419,14 @@ public async Task<ApiResponse<ForecastsDataResponse>> GetForecastHsu(
Copy file name to clipboardExpand all lines: src/Solcast/Clients/HistoricClient.cs
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -334,9 +334,9 @@ public async Task<ApiResponse<HistoricPvPowerResponse>> GetHistoricRooftopPvPowe
334
334
/// <param name="timeZone">Timezone to return in data set. Accepted values are utc, longitudinal, or a range from -13 to 13 in 0.25 hour increments for utc offset. Default is utc.</param>
335
335
/// <param name="period">Length of the averaging period in ISO 8601 format. Default is PT30M.</param>
336
336
/// <param name="depoVelocPm10">Deposition or settling velocity of PM2.5 particulates. [m/s]. Default is 0.0009.</param>
337
-
/// <param name="depoVelocPm2.5">Deposition or settling velocity of PM10 particulates. [m/s]. Default is 0.004.</param>
337
+
/// <param name="depoVelocPm2_5">Deposition or settling velocity of PM10 particulates. [m/s]. Default is 0.004.</param>
338
338
/// <param name="pm10">Restricted. A list of PM10 values. Concentration of airborne particulate matter (PM) with aerodynamicdiameter less than 10 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
339
-
/// <param name="pm2.5">Restricted. Concentration of airborne particulate matter (PM) with aerodynamic diameter less than 2.5 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
339
+
/// <param name="pm2_5">Restricted. Concentration of airborne particulate matter (PM) with aerodynamic diameter less than 2.5 microns. [g/m^3]. HSU endpoint will internally use Solcast's PM2.5 values tailored to your request time period.</param>
340
340
/// <param name="tilt">The angle (degrees) that the PV system is tilted off the horizontal. A tilt of 0 means the system faces directly upwards, and 90 means the system is vertical and facing the horizon. If you don't specify tilt, we use a default tilt angle based on the latitude you specify in your request. Must be between 0 and 90.</param>
341
341
/// <param name="start">ISO_8601 compliant starting datetime for the historical data. If the supplied value does not specify a timezone, the timezone will be inferred from the time_zone parameter, if supplied. Otherwise UTC is assumed.</param>
342
342
/// <param name="duration">Must include one of end_date and duration. ISO_8601 compliant duration for the historical data. Must be within 31 days of the start_date.</param>
@@ -354,9 +354,9 @@ public async Task<ApiResponse<EstimatedActualsDataResponse>> GetHistoricHsu(
354
354
stringtimeZone=null,
355
355
stringperiod=null,
356
356
double?depoVelocPm10=null,
357
-
double?depoVelocPm2.5=null,
357
+
double?depoVelocPm2_5=null,
358
358
List<double?>pm10=null,
359
-
List<double?>pm2.5=null,
359
+
List<double?>pm2_5=null,
360
360
double?tilt=null,
361
361
stringduration=null,
362
362
stringend=null,
@@ -377,17 +377,17 @@ public async Task<ApiResponse<EstimatedActualsDataResponse>> GetHistoricHsu(
0 commit comments