-
-
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.
* solarman * solarman * renamed col * na data rm
- Loading branch information
1 parent
ec0983a
commit b403b6a
Showing
6 changed files
with
142 additions
and
25 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
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,79 @@ | ||
import os | ||
import requests | ||
import pandas as pd | ||
from datetime import timedelta | ||
from dotenv import load_dotenv | ||
|
||
# Load environment variables | ||
load_dotenv() | ||
|
||
# Constants | ||
SOLARMAN_API_URL = os.getenv('SOLARMAN_API_URL') | ||
SOLARMAN_TOKEN = os.getenv('SOLARMAN_TOKEN') | ||
SOLARMAN_ID = os.getenv('SOLARMAN_ID') | ||
|
||
def get_solarman_data(start_date, end_date): | ||
""" | ||
Fetch data from the Solarman API from start_date to end_date. | ||
:param start_date: Start date (datetime object) | ||
:param end_date: End date (datetime object) | ||
:return: DataFrame with timestamp and power_kw columns | ||
""" | ||
all_data = [] | ||
|
||
current_date = start_date | ||
|
||
while current_date <= end_date: | ||
year = current_date.year | ||
month = current_date.month | ||
day = current_date.day | ||
|
||
url = f"{SOLARMAN_API_URL}/{SOLARMAN_ID}/record" | ||
|
||
headers = { | ||
'Authorization': f'Bearer {SOLARMAN_TOKEN}', | ||
'User-Agent': 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7' | ||
} | ||
|
||
params = { | ||
'year': year, | ||
'month': month, | ||
'day': day | ||
} | ||
|
||
response = requests.get(url, headers=headers, params=params) | ||
|
||
if response.status_code != 200: | ||
print(f"API request failed for {current_date} with status code {response.status_code}") | ||
else: | ||
data = response.json() | ||
records = data.get('records', []) | ||
|
||
if records: | ||
df = pd.DataFrame(records) | ||
df['timestamp'] = pd.to_datetime(df['dateTime'], unit='s') | ||
all_data.append(df) | ||
|
||
current_date += timedelta(days=1) | ||
|
||
if not all_data: | ||
raise ValueError("No data found for the specified date range") | ||
|
||
# Concatenate all dataframes | ||
full_data = pd.concat(all_data, ignore_index=True) | ||
|
||
# Select relevant columns | ||
full_data = full_data[['timestamp', 'generationPower']] | ||
|
||
# Convert watts to kilowatts and rename the column | ||
full_data['power_kw'] = full_data['generationPower'] / 1000.0 | ||
full_data = full_data.drop('generationPower', axis=1) | ||
|
||
# Ensure the dataframe only has 'timestamp' and 'power_kw' columns | ||
full_data = full_data[['timestamp', 'power_kw']] | ||
|
||
# Sort by timestamp | ||
full_data = full_data.sort_values('timestamp') | ||
|
||
return full_data |
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