-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
71 lines (68 loc) · 3.46 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
site_name: Solcast API Python SDK
site_url: https://solcast.github.io/solcast-api-python-sdk/
site_dir: public
theme:
name: material
logo: 'img/logo.png'
palette:
primary: black
accent: yellow
nav:
- Home: index.md
- Forecast: forecast.md
- Live: live.md
- Historic: historic.md
- TMY: tmy.md
- PV Power Sites: pv_power_sites.md
- Aggregations: aggregations.md
- Example Notebooks:
- '1. Getting Data':
- '1.1 Getting Data: Historic Solar Radiation': 'notebooks/1.1 Getting Data - Historic Solar Radiation.ipynb'
- '1.2 Getting Data: TMY in your local timezone': 'notebooks/1.2 Getting Data - TMY in your local timezone.ipynb'
- '1.3 Getting Data: Make Concurrent Requests': 'notebooks/1.3 Getting Data - Make Concurrent Requests.ipynb'
- '2. PVLib':
- '2.1 ModelChain with Solcast weather data': 'notebooks/2.1 PVLib - ModelChain with Solcast weather data.ipynb'
- '2.2 Using pvlib.iotools helper functions to get Solcast data': "notebooks/2.2 PVLib - Using pvlib.iotools helper functions to get Solcast data.ipynb"
- '2.3 Using pvlib.soiling.kimber to model soiling losses': "notebooks/2.3 Dust Soiling with Kimber.ipynb"
- '3. Comparing to Measurements':
- '3.1 Comparing to Measurements: Timezone and Time Period alignment': 'notebooks/3.1 Comparing to Measurements - Timezone and Time Period alignment.ipynb'
- '3.2 Comparing to Measurements [GHI]: Quality Controlling and Gap Filling Measurements with Solcast Actuals': 'notebooks/3.2 Comparing to Measurements [GHI] - Quality Controlling and Gap Filling Measurements with Solcast Actuals.ipynb'
- '3.2b Comparing to Measurements [GTI]: Quality Controlling and Gap Filling Measurements with Solcast Actuals': 'notebooks/3.2b Comparing to Measurements [GTI] - Quality Controlling and Gap Filling Measurements with Solcast Actuals.ipynb'
- '3.3 Comparing to Measurements: Accuracy Metrics': 'notebooks/3.3 Comparing to Measurements - Accuracy Metrics.ipynb'
- '3.4 Rooftop PV Tuning': 'notebooks/3.4 Rooftop PV Tuning.ipynb'
- '3.4b Rooftop Shading Corrections': 'notebooks/3.4b Rooftop Shading Corrections.ipynb'
- '4. Advanced PV Power':
- '4.1 Advanced PV Power: Setting up and Using PV Sites': 'notebooks/4.1 Setting up and Using PV Sites.ipynb'
- data:
- '3.1_sample_measurements.csv': 'notebooks/data/3.1_sample_measurements.csv'
- '3.2_sample_measurements.csv': 'notebooks/data/3.2_sample_measurements.csv'
- '3.2b_sample_measurements.csv': 'notebooks/data/3.2b_sample_measurements.csv'
- '3.3_sample_forecasts.csv': 'notebooks/data/3.3_sample_forecasts.csv'
- '3.3_sample_measurements.csv': 'notebooks/data/3.3_sample_measurements.csv'
- '3.4_sample_measurements.csv': 'notebooks/data/3.4_sample_measurements.csv'
- '3.4b_sample_measurements.csv': 'notebooks/data/3.4b_sample_measurements.csv'
- API reference:
- api/client.md
- api/response.md
markdown_extensions:
- tables
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
plugins:
- mkdocs-jupyter
- mkdocstrings:
enabled: !ENV [ ENABLE_MKDOCSTRINGS, true ]
default_handler: python
handlers:
python:
options:
show_source: false