@openpv/simshady
    Preparing search index...

    Type Alias SolarIrradianceData

    Solar irradiance data. metadata json holds the coordinates where the irradiance data can be used. daylight_timesteps_processed is the number of hours of daylight in the considered timeframe. If the skydome represents a whole year, this is about 4700.

    data holds a list of sky segments, where altitude and azimuth define the position and radiance defines the amount of incoming radiance. Read more about it in the "How does simshady work" section of the docs page.

    Definition of the coordiante system in simshady: Angles are expected in degree. Azimuth = 0 is North, Azimuth = 90° is East. Altitude = 0 is the horizon, Altitude = 90° is upwards / Zenith.

    Example Data:

    {
    "data": [
    {
    "altitude": 78.28,
    "azimuth": 45.0,
    "radiance": 32.13
    },
    {
    "altitude": 78.28,
    "azimuth": 135.0,
    "radiance": 32.13
    },
    ...
    ],
    "metadata": {
    "latitude": 48.5,
    "longitude": 11.5,
    "daylight_timesteps_processed": 4700,
    }
    }
    type SolarIrradianceData = {
        data: { altitude: number; azimuth: number; radiance: number }[];
        metadata: {
            daylight_timesteps_processed: number;
            latitude: number;
            longitude: number;
        };
    }
    Index

    Properties

    Properties

    data: { altitude: number; azimuth: number; radiance: number }[]
    metadata: {
        daylight_timesteps_processed: number;
        latitude: number;
        longitude: number;
    }