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: getting_started.md
+75-4Lines changed: 75 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ Welcome to the Solar Forecasting project! This document will introduce you to th
19
19
14.[Helpful Knowledge and Skills](#helpful-knowledge-and-skills)
20
20
15.[How This Project Fits into Renewable Energy](#how-this-project-fits-into-renewable-energy)
21
21
16.[Development and Testing Guide](#development-and-testing-guide)
22
+
17.[Command Line Interface (CLI)](#command-line-interface-cli)
22
23
23
24
---
24
25
@@ -149,8 +150,8 @@ APIs play a crucial role in fetching real-time and historical data required for
149
150
3.**Satellite Data APIs**
150
151
Satellite imagery and radiance data are invaluable for analyzing cloud cover and solar irradiance:
151
152
-**Copernicus Atmosphere Monitoring Service (CAMS)**: Provides satellite-based aerosol, cloud, and solar radiation data. [Learn more](https://atmosphere.copernicus.eu/).
152
-
-**NASA’s POWER API**: Offers meteorological and solar datasets tailored for renewable energy applications, including European regions. [Learn more](https://power.larc.nasa.gov/).
153
-
-**EUMETSAT**: Europe’s satellite-based service providing weather and climate data, including cloud cover and solar radiation products. [Learn more](https://www.eumetsat.int/).
153
+
-**NASA's POWER API**: Offers meteorological and solar datasets tailored for renewable energy applications, including European regions. [Learn more](https://power.larc.nasa.gov/).
154
+
-**EUMETSAT**: Europe's satellite-based service providing weather and climate data, including cloud cover and solar radiation products. [Learn more](https://www.eumetsat.int/).
154
155
155
156
4.**AWS S3 Access**
156
157
You will need access to the AWS S3 bucket containing the NWP data. Ensure you have the required permissions to list and download objects from the bucket.
@@ -261,7 +262,7 @@ Below is a glossary of key terms that might be useful when working on this proje
261
262
262
263
### Geospatial Terms
263
264
264
-
- **Geostationary**: A satellite orbit where the satellite remains fixed relative to a specific point on Earth’s surface, providing continuous observation of the same region. Commonly used in weather monitoring and solar radiation measurement.
265
+
- **Geostationary**: A satellite orbit where the satellite remains fixed relative to a specific point on Earth's surface, providing continuous observation of the same region. Commonly used in weather monitoring and solar radiation measurement.
265
266
- **Geospatial Data**: Information about objects, events, or phenomena on Earth's surface, represented by geographic coordinates and often used in mapping and analysis.
266
267
- **Latitude**: The angular distance of a location north or south of the equator, measured in degrees. Important for determining solar angles and irradiance.
267
268
- **Longitude**: The angular distance of a location east or west of the prime meridian, measured in degrees. Used in conjunction with latitude to pinpoint geographic locations.
@@ -288,7 +289,7 @@ Below is a glossary of key terms that might be useful when working on this proje
288
289
- **Atmospheric Pressure**: The force exerted by the weight of the atmosphere above a given point, measured in hectopascals (hPa) or millibars (mb). It affects weather patterns and the movement of air masses.
289
290
- **Relative Humidity**: The amount of water vapor in the air compared to the maximum amount the air can hold at a given temperature, expressed as a percentage. It influences cloud formation and precipitation.
290
291
- **Dew Point**: The temperature at which air becomes saturated with moisture and water vapor condenses into dew, clouds, or fog.
291
-
- **Radiative Forcing**: The change in the energy balance of the Earth’s atmosphere due to factors like greenhouse gases, aerosols, and changes in solar irradiance. It is a key concept in climate change studies.
292
+
- **Radiative Forcing**: The change in the energy balance of the Earth's atmosphere due to factors like greenhouse gases, aerosols, and changes in solar irradiance. It is a key concept in climate change studies.
292
293
- **Turbidity**: A measure of the atmosphere's clarity, influenced by aerosols, dust, and pollution. High turbidity reduces the amount of solar radiation reaching the Earth's surface.
293
294
- **Ozone Layer**: A layer of ozone (O₃) in the stratosphere that absorbs the majority of the Sun’s harmful ultraviolet radiation. Changes in the ozone layer can impact solar irradiance measurements.
294
295
- **Wind Shear**: A change in wind speed or direction over a short distance in the atmosphere. It can influence cloud formation, storm development, and the dispersal of aerosols.
@@ -542,4 +543,74 @@ Use `pytest` to ensure the project works as expected:
542
543
543
544
---
544
545
546
+
## Command Line Interface (CLI)
547
+
548
+
The `open-data-pvnet` CLI provides various commands for downloading, processing, and loading weather and solar data.
549
+
550
+
### Basic Structure
551
+
```bash
552
+
open-data-pvnet <provider><operation> [options]
553
+
```
554
+
555
+
### Available Providers
556
+
- `metoffice`: UK Met Office weather data
557
+
- `gfs`: Global Forecast System data (coming soon)
558
+
- `dwd`: German Weather Service data (coming soon)
0 commit comments