Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interface for irradiance timeseries skydome data #45

Open
FlorianK13 opened this issue Oct 25, 2024 · 1 comment
Open

Add interface for irradiance timeseries skydome data #45

FlorianK13 opened this issue Oct 25, 2024 · 1 comment

Comments

@FlorianK13
Copy link
Member

FlorianK13 commented Oct 25, 2024

We want to integrate the possibility to receive irradiance data timeseries. In there we could receive the sum of direct and diffuse radiance coming from a given sky segment at a given point in time.

The data format should look like this.

SkyDomeTimeSeries: {
    data: {
        altitude: [] number;  
        azimuth: [] number;
        directRadiance: [] number; 
        diffuseRadiance: [] number; 
    }[];  //a timeseries of sky domes at a given poin in time (1h resolution or 15min resolution)
    metadata: {
        description: string;
        latitude: number;
        longitude: number;
        samplesAzimuth: number;
        samplesAltitude: number;
        lengthTimeseries: number;
    };
}
@FlorianK13
Copy link
Member Author

This is what we mean when talking about a skydome:
Skydome

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant