Skip to content

Commit 3856cde

Browse files
Merge pull request #29 from Solcast/feature/separate_out_to_pandas
Fixes to docs
2 parents 12b74b4 + b7261fc commit 3856cde

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/pv_power_sites.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ Allows management of detailed PV power site metadata used by the `advanced_pv_po
33

44
The module `pv_power_sites` has 6 functions available. Use the `res.to_dict()` method to see the site metadata.
55

6-
| Endpoint | Purpose | API Docs |
6+
| <div style="width:150px">Endpoint</div> | Purpose | API Docs |
77
|------|------|------|
8-
| `list_pv_power_sites` | List available PV power sites. | [details](https://docs.solcast.com.au/#baee4c8b-83e8-43e6-886b-98671164df10){.md-button} |
9-
| `get_pv_power_site` | Get an existing PV power site's specifications. | [details](https://docs.solcast.com.au/#27a18021-eed0-4281-8b28-9bdf1ebb2a95){.md-button} |
8+
| `list_pv_power_sites` | List available PV power sites. | [details](https://docs.solcast.com.au/#baee4c8b-83e8-43e6-886b-98671164df10){.md-button} |
9+
| `get_pv_power_site` | Get an existing PV power site's specifications. | [details](https://docs.solcast.com.au/#27a18021-eed0-4281-8b28-9bdf1ebb2a95){.md-button} |
1010
| `create_pv_power_site` | Create PV power site to be used with Solcast's advanced PV power model. | [details](https://docs.solcast.com.au/#d3a35494-15d8-4baa-b96f-7fd3353c9f06){.md-button} |
1111
| `patch_pv_power_site` | Patch an existing PV power site to partially update the site's specifications. | [details](https://docs.solcast.com.au/#ba412164-31c2-47a9-a965-c95bc9b632a6){.md-button} |
1212
| `update_pv_power_site` | Overwrite an existing PV power site's specifications. | [details](https://docs.solcast.com.au/#181cf2be-f710-49c3-8050-07be858f25e1){.md-button} |
@@ -56,7 +56,7 @@ res.to_dict()
5656
0.015,
5757
0.015,
5858
0.015],
59-
'bifacial_system': False,
59+
'bifacial_system': False,
6060
'site_ground_albedo': 0.25,
6161
'bifaciality_factor': 0.7,
6262
'pvrow_height': 1.5,

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ nav:
1414
- Live: live.md
1515
- Historic: historic.md
1616
- TMY: tmy.md
17+
- PV Power Sites: pv_power_sites.md
1718
- Example Notebooks:
1819
- '1.1 Getting Data: Historic Solar Radiation': 'notebooks/1.1 Getting Data - Historic Solar Radiation.ipynb'
1920
- '1.2 Getting Data: TMY in your local timezone': 'notebooks/1.2 Getting Data - TMY in your local timezone.ipynb'

solcast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.2.1"
1+
__version__ = "1.2.2"
22

33
from . import api, forecast, historic, live, tmy, unmetered_locations, urls
44

0 commit comments

Comments
 (0)