-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplified the steps in Readme file (#208)
* simplified the steps in Readme file Signed-off-by: sumana sree <[email protected]> * Copied forecast_csv.py file into scripts directory Signed-off-by: sumana sree <[email protected]> * added the specific code to the forecast_csv.py file Signed-off-by: sumana sree <[email protected]> * removed lines from quartz_solar_forecast/utils/forecast_csv.py files Signed-off-by: sumana sree <[email protected]> --------- Signed-off-by: sumana sree <[email protected]>
- Loading branch information
1 parent
ba2c668
commit 98f9dd3
Showing
3 changed files
with
13 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if __name__ == "__main__": | ||
# please change the site name, start_datetime and end_datetime, latitude, longitude and capacity_kwp as per your requirement | ||
write_out_forecasts( | ||
init_time_freq=6, | ||
start_datetime="2024-03-10 00:00:00", | ||
end_datetime="2024-03-11 00:00:00", | ||
site_name="Test", | ||
latitude=51.75, | ||
longitude=-1.25, | ||
capacity_kwp=1.25 | ||
) |