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

No line for Moon #149

Open
UweLoyal opened this issue Oct 22, 2024 · 4 comments
Open

No line for Moon #149

UweLoyal opened this issue Oct 22, 2024 · 4 comments

Comments

@UweLoyal
Copy link

UweLoyal commented Oct 22, 2024

There is no line for Moon!

image

Must look like this:

image
or
image

@ngocjohn
Copy link

Hi @UweLoyal , could I ask the second and last graph is a lovelace card? Can you share the config? Thanks!

@UweLoyal
Copy link
Author

UweLoyal commented Oct 24, 2024

The second graph comes from a Weather Page.

Card:

`type: custom:apexcharts-card
experimental:
color_threshold: true
graph_span: 24h
update_interval: 2m
now:
show: true
label: Jetzt
color: red
span:
start: day
yaxis:

  • id: primary
    decimals: 2
    max: 80
    min: -80
    header:
    show: true
    title: Sonnen-/Mondverlauf
    show_states: false
    colorize_states: true
    all_series_config:
    unit: °
    type: line
    color: orange
    stroke_width: 0
    show:
    legend_value: false
    in_header: true
    header_color_threshold: true
    series:
  • entity: sensor.Astro_Daten_Sonne_SunAltitude24h
    type: line
    stroke_width: 2
    name: Altitude Sun
    show:
    extremas: true
    in_header: before_now
    data_generator: |
    var data = [];
    var formattedJSON = JSON.parse(entity.state).data;
    console.log(formattedJSON);
    formattedJSON.forEach(obj => {
    data.push([obj.timestamp, (obj.SunAltitude)])
    });
    return data;
  • entity: sensor.Astro_Daten_Mond_MoonAltitude24h
    type: line
    color: grey
    stroke_width: 2
    name: Altitude Moon
    show:
    extremas: true
    in_header: before_now
    data_generator: |
    var data = [];
    var formattedJSON = JSON.parse(entity.state).data;
    console.log(formattedJSON);
    formattedJSON.forEach(obj => {
    data.push([obj.timestamp, (obj.MoonAltitude)])
    });
    return data;
    `

JsonData Sun:

{
"object": "list",
"data": [
{
"timestamp": "Fri Oct 25 2024 00:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.39,
"SunAzimuth": 333.91
},
{
"timestamp": "Fri Oct 25 2024 00:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.73,
"SunAzimuth": 335.72
},
{
"timestamp": "Fri Oct 25 2024 00:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.05,
"SunAzimuth": 337.55
},
{
"timestamp": "Fri Oct 25 2024 00:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.35,
"SunAzimuth": 339.41
},
{
"timestamp": "Fri Oct 25 2024 00:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.62,
"SunAzimuth": 341.28
},
{
"timestamp": "Fri Oct 25 2024 00:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.86,
"SunAzimuth": 343.17
},
{
"timestamp": "Fri Oct 25 2024 00:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.08,
"SunAzimuth": 345.08
},
{
"timestamp": "Fri Oct 25 2024 00:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.28,
"SunAzimuth": 347.01
},
{
"timestamp": "Fri Oct 25 2024 00:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.45,
"SunAzimuth": 348.95
},
{
"timestamp": "Fri Oct 25 2024 00:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.59,
"SunAzimuth": 350.9
},
{
"timestamp": "Fri Oct 25 2024 00:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.7,
"SunAzimuth": 352.86
},
{
"timestamp": "Fri Oct 25 2024 00:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.79,
"SunAzimuth": 354.83
},
{
"timestamp": "Fri Oct 25 2024 01:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.85,
"SunAzimuth": 356.81
},
{
"timestamp": "Fri Oct 25 2024 01:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.88,
"SunAzimuth": 358.78
},
{
"timestamp": "Fri Oct 25 2024 01:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.88,
"SunAzimuth": 0.77
},
{
"timestamp": "Fri Oct 25 2024 01:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.86,
"SunAzimuth": 2.75
},
{
"timestamp": "Fri Oct 25 2024 01:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.81,
"SunAzimuth": 4.72
},
{
"timestamp": "Fri Oct 25 2024 01:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.73,
"SunAzimuth": 6.69
},
{
"timestamp": "Fri Oct 25 2024 01:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.63,
"SunAzimuth": 8.66
},
{
"timestamp": "Fri Oct 25 2024 01:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.49,
"SunAzimuth": 10.61
},
{
"timestamp": "Fri Oct 25 2024 01:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.33,
"SunAzimuth": 12.56
},
{
"timestamp": "Fri Oct 25 2024 01:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -51.15,
"SunAzimuth": 14.49
},
{
"timestamp": "Fri Oct 25 2024 01:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.93,
"SunAzimuth": 16.4
},
{
"timestamp": "Fri Oct 25 2024 01:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.7,
"SunAzimuth": 18.3
},
{
"timestamp": "Fri Oct 25 2024 02:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.43,
"SunAzimuth": 20.18
},
{
"timestamp": "Fri Oct 25 2024 02:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -50.15,
"SunAzimuth": 22.04
},
{
"timestamp": "Fri Oct 25 2024 02:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.84,
"SunAzimuth": 23.88
},
{
"timestamp": "Fri Oct 25 2024 02:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.5,
"SunAzimuth": 25.7
},
{
"timestamp": "Fri Oct 25 2024 02:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.14,
"SunAzimuth": 27.49
},
{
"timestamp": "Fri Oct 25 2024 02:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -48.76,
"SunAzimuth": 29.26
},
{
"timestamp": "Fri Oct 25 2024 02:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -48.36,
"SunAzimuth": 31
},
{
"timestamp": "Fri Oct 25 2024 02:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -47.94,
"SunAzimuth": 32.72
},
{
"timestamp": "Fri Oct 25 2024 02:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -47.5,
"SunAzimuth": 34.42
},
{
"timestamp": "Fri Oct 25 2024 02:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -47.04,
"SunAzimuth": 36.09
},
{
"timestamp": "Fri Oct 25 2024 02:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -46.56,
"SunAzimuth": 37.73
},
{
"timestamp": "Fri Oct 25 2024 02:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -46.06,
"SunAzimuth": 39.35
},
{
"timestamp": "Fri Oct 25 2024 03:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -45.54,
"SunAzimuth": 40.94
},
{
"timestamp": "Fri Oct 25 2024 03:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -45.01,
"SunAzimuth": 42.5
},
{
"timestamp": "Fri Oct 25 2024 03:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -44.46,
"SunAzimuth": 44.04
},
{
"timestamp": "Fri Oct 25 2024 03:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -43.9,
"SunAzimuth": 45.55
},
{
"timestamp": "Fri Oct 25 2024 03:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -43.32,
"SunAzimuth": 47.04
},
{
"timestamp": "Fri Oct 25 2024 03:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -42.73,
"SunAzimuth": 48.5
},
{
"timestamp": "Fri Oct 25 2024 03:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -42.13,
"SunAzimuth": 49.94
},
{
"timestamp": "Fri Oct 25 2024 03:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -41.51,
"SunAzimuth": 51.36
},
{
"timestamp": "Fri Oct 25 2024 03:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -40.88,
"SunAzimuth": 52.75
},
{
"timestamp": "Fri Oct 25 2024 03:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -40.23,
"SunAzimuth": 54.12
},
{
"timestamp": "Fri Oct 25 2024 03:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -39.58,
"SunAzimuth": 55.46
},
{
"timestamp": "Fri Oct 25 2024 03:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -38.92,
"SunAzimuth": 56.79
},
{
"timestamp": "Fri Oct 25 2024 04:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -38.24,
"SunAzimuth": 58.09
},
{
"timestamp": "Fri Oct 25 2024 04:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -37.56,
"SunAzimuth": 59.38
},
{
"timestamp": "Fri Oct 25 2024 04:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -36.87,
"SunAzimuth": 60.64
},
{
"timestamp": "Fri Oct 25 2024 04:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -36.16,
"SunAzimuth": 61.89
},
{
"timestamp": "Fri Oct 25 2024 04:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -35.45,
"SunAzimuth": 63.12
},
{
"timestamp": "Fri Oct 25 2024 04:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -34.74,
"SunAzimuth": 64.33
},
{
"timestamp": "Fri Oct 25 2024 04:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -34.01,
"SunAzimuth": 65.52
},
{
"timestamp": "Fri Oct 25 2024 04:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -33.28,
"SunAzimuth": 66.7
},
{
"timestamp": "Fri Oct 25 2024 04:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -32.54,
"SunAzimuth": 67.86
},
{
"timestamp": "Fri Oct 25 2024 04:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -31.8,
"SunAzimuth": 69
},
{
"timestamp": "Fri Oct 25 2024 04:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -31.05,
"SunAzimuth": 70.13
},
{
"timestamp": "Fri Oct 25 2024 04:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -30.29,
"SunAzimuth": 71.25
},
{
"timestamp": "Fri Oct 25 2024 05:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -29.53,
"SunAzimuth": 72.36
},
{
"timestamp": "Fri Oct 25 2024 05:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -28.77,
"SunAzimuth": 73.45
},
{
"timestamp": "Fri Oct 25 2024 05:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -28,
"SunAzimuth": 74.53
},
{
"timestamp": "Fri Oct 25 2024 05:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -27.23,
"SunAzimuth": 75.6
},
{
"timestamp": "Fri Oct 25 2024 05:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -26.45,
"SunAzimuth": 76.65
},
{
"timestamp": "Fri Oct 25 2024 05:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -25.67,
"SunAzimuth": 77.7
},
{
"timestamp": "Fri Oct 25 2024 05:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -24.89,
"SunAzimuth": 78.74
},
{
"timestamp": "Fri Oct 25 2024 05:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -24.1,
"SunAzimuth": 79.77
},
{
"timestamp": "Fri Oct 25 2024 05:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -23.31,
"SunAzimuth": 80.79
},
{
"timestamp": "Fri Oct 25 2024 05:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -22.52,
"SunAzimuth": 81.8
},
{
"timestamp": "Fri Oct 25 2024 05:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -21.73,
"SunAzimuth": 82.8
},
{
"timestamp": "Fri Oct 25 2024 05:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -20.93,
"SunAzimuth": 83.8
},
{
"timestamp": "Fri Oct 25 2024 06:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -20.14,
"SunAzimuth": 84.79
},
{
"timestamp": "Fri Oct 25 2024 06:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -19.34,
"SunAzimuth": 85.78
},
{
"timestamp": "Fri Oct 25 2024 06:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -18.54,
"SunAzimuth": 86.75
},
{
"timestamp": "Fri Oct 25 2024 06:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -17.74,
"SunAzimuth": 87.73
},
{
"timestamp": "Fri Oct 25 2024 06:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -16.94,
"SunAzimuth": 88.7
},
{
"timestamp": "Fri Oct 25 2024 06:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -16.14,
"SunAzimuth": 89.66
},
{
"timestamp": "Fri Oct 25 2024 06:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -15.34,
"SunAzimuth": 90.62
},
{
"timestamp": "Fri Oct 25 2024 06:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -14.54,
"SunAzimuth": 91.58
},
{
"timestamp": "Fri Oct 25 2024 06:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -13.74,
"SunAzimuth": 92.53
},
{
"timestamp": "Fri Oct 25 2024 06:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -12.94,
"SunAzimuth": 93.48
},
{
"timestamp": "Fri Oct 25 2024 06:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -12.15,
"SunAzimuth": 94.43
},
{
"timestamp": "Fri Oct 25 2024 06:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -11.35,
"SunAzimuth": 95.37
},
{
"timestamp": "Fri Oct 25 2024 07:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -10.55,
"SunAzimuth": 96.32
},
{
"timestamp": "Fri Oct 25 2024 07:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -9.76,
"SunAzimuth": 97.26
},
{
"timestamp": "Fri Oct 25 2024 07:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -8.97,
"SunAzimuth": 98.21
},
{
"timestamp": "Fri Oct 25 2024 07:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -8.17,
"SunAzimuth": 99.15
},
{
"timestamp": "Fri Oct 25 2024 07:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -7.39,
"SunAzimuth": 100.09
},
{
"timestamp": "Fri Oct 25 2024 07:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -6.6,
"SunAzimuth": 101.03
},
{
"timestamp": "Fri Oct 25 2024 07:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -5.82,
"SunAzimuth": 101.98
},
{
"timestamp": "Fri Oct 25 2024 07:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -5.03,
"SunAzimuth": 102.92
},
{
"timestamp": "Fri Oct 25 2024 07:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -4.26,
"SunAzimuth": 103.87
},
{
"timestamp": "Fri Oct 25 2024 07:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -3.48,
"SunAzimuth": 104.81
},
{
"timestamp": "Fri Oct 25 2024 07:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -2.71,
"SunAzimuth": 105.76
},
{
"timestamp": "Fri Oct 25 2024 07:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -1.94,
"SunAzimuth": 106.71
},
{
"timestamp": "Fri Oct 25 2024 08:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -1.18,
"SunAzimuth": 107.67
},
{
"timestamp": "Fri Oct 25 2024 08:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -0.42,
"SunAzimuth": 108.62
},
{
"timestamp": "Fri Oct 25 2024 08:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 0.34,
"SunAzimuth": 109.58
},
{
"timestamp": "Fri Oct 25 2024 08:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 1.09,
"SunAzimuth": 110.55
},
{
"timestamp": "Fri Oct 25 2024 08:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 1.84,
"SunAzimuth": 111.52
},
{
"timestamp": "Fri Oct 25 2024 08:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 2.58,
"SunAzimuth": 112.49
},
{
"timestamp": "Fri Oct 25 2024 08:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 3.32,
"SunAzimuth": 113.46
},
{
"timestamp": "Fri Oct 25 2024 08:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 4.05,
"SunAzimuth": 114.45
},
{
"timestamp": "Fri Oct 25 2024 08:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 4.77,
"SunAzimuth": 115.43
},
{
"timestamp": "Fri Oct 25 2024 08:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 5.49,
"SunAzimuth": 116.42
},
{
"timestamp": "Fri Oct 25 2024 08:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 6.21,
"SunAzimuth": 117.42
},
{
"timestamp": "Fri Oct 25 2024 08:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 6.91,
"SunAzimuth": 118.43
},
{
"timestamp": "Fri Oct 25 2024 09:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 7.61,
"SunAzimuth": 119.44
},
{
"timestamp": "Fri Oct 25 2024 09:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 8.31,
"SunAzimuth": 120.45
},
{
"timestamp": "Fri Oct 25 2024 09:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 8.99,
"SunAzimuth": 121.47
},
{
"timestamp": "Fri Oct 25 2024 09:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 9.67,
"SunAzimuth": 122.5
},
{
"timestamp": "Fri Oct 25 2024 09:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 10.34,
"SunAzimuth": 123.54
},
{
"timestamp": "Fri Oct 25 2024 09:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 11,
"SunAzimuth": 124.59
},
{
"timestamp": "Fri Oct 25 2024 09:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 11.66,
"SunAzimuth": 125.64
},
{
"timestamp": "Fri Oct 25 2024 09:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 12.3,
"SunAzimuth": 126.7
},
{
"timestamp": "Fri Oct 25 2024 09:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 12.94,
"SunAzimuth": 127.77
},
{
"timestamp": "Fri Oct 25 2024 09:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 13.57,
"SunAzimuth": 128.85
},
{
"timestamp": "Fri Oct 25 2024 09:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 14.19,
"SunAzimuth": 129.93
},
{
"timestamp": "Fri Oct 25 2024 09:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 14.79,
"SunAzimuth": 131.03
},
{
"timestamp": "Fri Oct 25 2024 10:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 15.39,
"SunAzimuth": 132.13
},
{
"timestamp": "Fri Oct 25 2024 10:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 15.98,
"SunAzimuth": 133.24
},
{
"timestamp": "Fri Oct 25 2024 10:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 16.56,
"SunAzimuth": 134.37
},
{
"timestamp": "Fri Oct 25 2024 10:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 17.12,
"SunAzimuth": 135.5
},
{
"timestamp": "Fri Oct 25 2024 10:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 17.68,
"SunAzimuth": 136.64
},
{
"timestamp": "Fri Oct 25 2024 10:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 18.22,
"SunAzimuth": 137.79
},
{
"timestamp": "Fri Oct 25 2024 10:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 18.75,
"SunAzimuth": 138.95
},
{
"timestamp": "Fri Oct 25 2024 10:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 19.27,
"SunAzimuth": 140.12
},
{
"timestamp": "Fri Oct 25 2024 10:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 19.78,
"SunAzimuth": 141.3
},
{
"timestamp": "Fri Oct 25 2024 10:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 20.27,
"SunAzimuth": 142.49
},
{
"timestamp": "Fri Oct 25 2024 10:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 20.75,
"SunAzimuth": 143.69
},
{
"timestamp": "Fri Oct 25 2024 10:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 21.22,
"SunAzimuth": 144.9
},
{
"timestamp": "Fri Oct 25 2024 11:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 21.67,
"SunAzimuth": 146.12
},
{
"timestamp": "Fri Oct 25 2024 11:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.11,
"SunAzimuth": 147.35
},
{
"timestamp": "Fri Oct 25 2024 11:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.53,
"SunAzimuth": 148.59
},
{
"timestamp": "Fri Oct 25 2024 11:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.94,
"SunAzimuth": 149.84
},
{
"timestamp": "Fri Oct 25 2024 11:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 23.33,
"SunAzimuth": 151.09
},
{
"timestamp": "Fri Oct 25 2024 11:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 23.71,
"SunAzimuth": 152.36
},
{
"timestamp": "Fri Oct 25 2024 11:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.07,
"SunAzimuth": 153.64
},
{
"timestamp": "Fri Oct 25 2024 11:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.42,
"SunAzimuth": 154.92
},
{
"timestamp": "Fri Oct 25 2024 11:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.75,
"SunAzimuth": 156.22
},
{
"timestamp": "Fri Oct 25 2024 11:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.06,
"SunAzimuth": 157.52
},
{
"timestamp": "Fri Oct 25 2024 11:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.36,
"SunAzimuth": 158.83
},
{
"timestamp": "Fri Oct 25 2024 11:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.64,
"SunAzimuth": 160.15
},
{
"timestamp": "Fri Oct 25 2024 12:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.9,
"SunAzimuth": 161.47
},
{
"timestamp": "Fri Oct 25 2024 12:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.15,
"SunAzimuth": 162.8
},
{
"timestamp": "Fri Oct 25 2024 12:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.37,
"SunAzimuth": 164.14
},
{
"timestamp": "Fri Oct 25 2024 12:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.58,
"SunAzimuth": 165.49
},
{
"timestamp": "Fri Oct 25 2024 12:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.77,
"SunAzimuth": 166.84
},
{
"timestamp": "Fri Oct 25 2024 12:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.95,
"SunAzimuth": 168.2
},
{
"timestamp": "Fri Oct 25 2024 12:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.1,
"SunAzimuth": 169.56
},
{
"timestamp": "Fri Oct 25 2024 12:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.23,
"SunAzimuth": 170.92
},
{
"timestamp": "Fri Oct 25 2024 12:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.35,
"SunAzimuth": 172.29
},
{
"timestamp": "Fri Oct 25 2024 12:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.45,
"SunAzimuth": 173.66
},
{
"timestamp": "Fri Oct 25 2024 12:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.52,
"SunAzimuth": 175.04
},
{
"timestamp": "Fri Oct 25 2024 12:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.58,
"SunAzimuth": 176.41
},
{
"timestamp": "Fri Oct 25 2024 13:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.62,
"SunAzimuth": 177.79
},
{
"timestamp": "Fri Oct 25 2024 13:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.64,
"SunAzimuth": 179.17
},
{
"timestamp": "Fri Oct 25 2024 13:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.64,
"SunAzimuth": 180.55
},
{
"timestamp": "Fri Oct 25 2024 13:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.62,
"SunAzimuth": 181.93
},
{
"timestamp": "Fri Oct 25 2024 13:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.59,
"SunAzimuth": 183.31
},
{
"timestamp": "Fri Oct 25 2024 13:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.53,
"SunAzimuth": 184.68
},
{
"timestamp": "Fri Oct 25 2024 13:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.45,
"SunAzimuth": 186.06
},
{
"timestamp": "Fri Oct 25 2024 13:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.36,
"SunAzimuth": 187.43
},
{
"timestamp": "Fri Oct 25 2024 13:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.24,
"SunAzimuth": 188.8
},
{
"timestamp": "Fri Oct 25 2024 13:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 27.11,
"SunAzimuth": 190.16
},
{
"timestamp": "Fri Oct 25 2024 13:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.96,
"SunAzimuth": 191.52
},
{
"timestamp": "Fri Oct 25 2024 13:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.79,
"SunAzimuth": 192.88
},
{
"timestamp": "Fri Oct 25 2024 14:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.6,
"SunAzimuth": 194.23
},
{
"timestamp": "Fri Oct 25 2024 14:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.39,
"SunAzimuth": 195.58
},
{
"timestamp": "Fri Oct 25 2024 14:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 26.17,
"SunAzimuth": 196.92
},
{
"timestamp": "Fri Oct 25 2024 14:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.92,
"SunAzimuth": 198.25
},
{
"timestamp": "Fri Oct 25 2024 14:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.66,
"SunAzimuth": 199.58
},
{
"timestamp": "Fri Oct 25 2024 14:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.38,
"SunAzimuth": 200.89
},
{
"timestamp": "Fri Oct 25 2024 14:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 25.09,
"SunAzimuth": 202.2
},
{
"timestamp": "Fri Oct 25 2024 14:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.78,
"SunAzimuth": 203.51
},
{
"timestamp": "Fri Oct 25 2024 14:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.45,
"SunAzimuth": 204.8
},
{
"timestamp": "Fri Oct 25 2024 14:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 24.1,
"SunAzimuth": 206.09
},
{
"timestamp": "Fri Oct 25 2024 14:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 23.74,
"SunAzimuth": 207.36
},
{
"timestamp": "Fri Oct 25 2024 14:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 23.36,
"SunAzimuth": 208.63
},
{
"timestamp": "Fri Oct 25 2024 15:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.97,
"SunAzimuth": 209.89
},
{
"timestamp": "Fri Oct 25 2024 15:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.56,
"SunAzimuth": 211.14
},
{
"timestamp": "Fri Oct 25 2024 15:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 22.14,
"SunAzimuth": 212.38
},
{
"timestamp": "Fri Oct 25 2024 15:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 21.7,
"SunAzimuth": 213.61
},
{
"timestamp": "Fri Oct 25 2024 15:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 21.25,
"SunAzimuth": 214.83
},
{
"timestamp": "Fri Oct 25 2024 15:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 20.79,
"SunAzimuth": 216.04
},
{
"timestamp": "Fri Oct 25 2024 15:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 20.31,
"SunAzimuth": 217.24
},
{
"timestamp": "Fri Oct 25 2024 15:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 19.81,
"SunAzimuth": 218.43
},
{
"timestamp": "Fri Oct 25 2024 15:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 19.31,
"SunAzimuth": 219.61
},
{
"timestamp": "Fri Oct 25 2024 15:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 18.79,
"SunAzimuth": 220.78
},
{
"timestamp": "Fri Oct 25 2024 15:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 18.26,
"SunAzimuth": 221.94
},
{
"timestamp": "Fri Oct 25 2024 15:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 17.72,
"SunAzimuth": 223.09
},
{
"timestamp": "Fri Oct 25 2024 16:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 17.16,
"SunAzimuth": 224.23
},
{
"timestamp": "Fri Oct 25 2024 16:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 16.6,
"SunAzimuth": 225.36
},
{
"timestamp": "Fri Oct 25 2024 16:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 16.02,
"SunAzimuth": 226.48
},
{
"timestamp": "Fri Oct 25 2024 16:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 15.43,
"SunAzimuth": 227.6
},
{
"timestamp": "Fri Oct 25 2024 16:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 14.84,
"SunAzimuth": 228.7
},
{
"timestamp": "Fri Oct 25 2024 16:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 14.23,
"SunAzimuth": 229.8
},
{
"timestamp": "Fri Oct 25 2024 16:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 13.61,
"SunAzimuth": 230.88
},
{
"timestamp": "Fri Oct 25 2024 16:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 12.98,
"SunAzimuth": 231.96
},
{
"timestamp": "Fri Oct 25 2024 16:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 12.35,
"SunAzimuth": 233.03
},
{
"timestamp": "Fri Oct 25 2024 16:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 11.7,
"SunAzimuth": 234.09
},
{
"timestamp": "Fri Oct 25 2024 16:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 11.05,
"SunAzimuth": 235.14
},
{
"timestamp": "Fri Oct 25 2024 16:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 10.39,
"SunAzimuth": 236.19
},
{
"timestamp": "Fri Oct 25 2024 17:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 9.72,
"SunAzimuth": 237.22
},
{
"timestamp": "Fri Oct 25 2024 17:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 9.04,
"SunAzimuth": 238.25
},
{
"timestamp": "Fri Oct 25 2024 17:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 8.35,
"SunAzimuth": 239.27
},
{
"timestamp": "Fri Oct 25 2024 17:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 7.66,
"SunAzimuth": 240.29
},
{
"timestamp": "Fri Oct 25 2024 17:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 6.96,
"SunAzimuth": 241.3
},
{
"timestamp": "Fri Oct 25 2024 17:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 6.25,
"SunAzimuth": 242.3
},
{
"timestamp": "Fri Oct 25 2024 17:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 5.54,
"SunAzimuth": 243.3
},
{
"timestamp": "Fri Oct 25 2024 17:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 4.82,
"SunAzimuth": 244.29
},
{
"timestamp": "Fri Oct 25 2024 17:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 4.09,
"SunAzimuth": 245.28
},
{
"timestamp": "Fri Oct 25 2024 17:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 3.36,
"SunAzimuth": 246.26
},
{
"timestamp": "Fri Oct 25 2024 17:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 2.62,
"SunAzimuth": 247.23
},
{
"timestamp": "Fri Oct 25 2024 17:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 1.88,
"SunAzimuth": 248.2
},
{
"timestamp": "Fri Oct 25 2024 18:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 1.13,
"SunAzimuth": 249.17
},
{
"timestamp": "Fri Oct 25 2024 18:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": 0.38,
"SunAzimuth": 250.13
},
{
"timestamp": "Fri Oct 25 2024 18:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -0.37,
"SunAzimuth": 251.09
},
{
"timestamp": "Fri Oct 25 2024 18:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -1.14,
"SunAzimuth": 252.05
},
{
"timestamp": "Fri Oct 25 2024 18:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -1.9,
"SunAzimuth": 253
},
{
"timestamp": "Fri Oct 25 2024 18:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -2.67,
"SunAzimuth": 253.95
},
{
"timestamp": "Fri Oct 25 2024 18:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -3.44,
"SunAzimuth": 254.9
},
{
"timestamp": "Fri Oct 25 2024 18:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -4.22,
"SunAzimuth": 255.84
},
{
"timestamp": "Fri Oct 25 2024 18:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -5,
"SunAzimuth": 256.79
},
{
"timestamp": "Fri Oct 25 2024 18:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -5.78,
"SunAzimuth": 257.73
},
{
"timestamp": "Fri Oct 25 2024 18:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -6.56,
"SunAzimuth": 258.67
},
{
"timestamp": "Fri Oct 25 2024 18:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -7.35,
"SunAzimuth": 259.61
},
{
"timestamp": "Fri Oct 25 2024 19:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -8.14,
"SunAzimuth": 260.55
},
{
"timestamp": "Fri Oct 25 2024 19:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -8.93,
"SunAzimuth": 261.49
},
{
"timestamp": "Fri Oct 25 2024 19:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -9.73,
"SunAzimuth": 262.43
},
{
"timestamp": "Fri Oct 25 2024 19:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -10.52,
"SunAzimuth": 263.37
},
{
"timestamp": "Fri Oct 25 2024 19:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -11.32,
"SunAzimuth": 264.31
},
{
"timestamp": "Fri Oct 25 2024 19:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -12.12,
"SunAzimuth": 265.26
},
{
"timestamp": "Fri Oct 25 2024 19:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -12.92,
"SunAzimuth": 266.2
},
{
"timestamp": "Fri Oct 25 2024 19:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -13.72,
"SunAzimuth": 267.15
},
{
"timestamp": "Fri Oct 25 2024 19:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -14.52,
"SunAzimuth": 268.1
},
{
"timestamp": "Fri Oct 25 2024 19:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -15.32,
"SunAzimuth": 269.06
},
{
"timestamp": "Fri Oct 25 2024 19:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -16.12,
"SunAzimuth": 270.01
},
{
"timestamp": "Fri Oct 25 2024 19:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -16.93,
"SunAzimuth": 270.97
},
{
"timestamp": "Fri Oct 25 2024 20:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -17.73,
"SunAzimuth": 271.94
},
{
"timestamp": "Fri Oct 25 2024 20:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -18.53,
"SunAzimuth": 272.91
},
{
"timestamp": "Fri Oct 25 2024 20:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -19.33,
"SunAzimuth": 273.88
},
{
"timestamp": "Fri Oct 25 2024 20:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -20.13,
"SunAzimuth": 274.87
},
{
"timestamp": "Fri Oct 25 2024 20:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -20.93,
"SunAzimuth": 275.85
},
{
"timestamp": "Fri Oct 25 2024 20:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -21.73,
"SunAzimuth": 276.85
},
{
"timestamp": "Fri Oct 25 2024 20:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -22.52,
"SunAzimuth": 277.85
},
{
"timestamp": "Fri Oct 25 2024 20:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -23.31,
"SunAzimuth": 278.85
},
{
"timestamp": "Fri Oct 25 2024 20:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -24.11,
"SunAzimuth": 279.87
},
{
"timestamp": "Fri Oct 25 2024 20:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -24.89,
"SunAzimuth": 280.9
},
{
"timestamp": "Fri Oct 25 2024 20:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -25.68,
"SunAzimuth": 281.93
},
{
"timestamp": "Fri Oct 25 2024 20:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -26.46,
"SunAzimuth": 282.97
},
{
"timestamp": "Fri Oct 25 2024 21:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -27.24,
"SunAzimuth": 284.03
},
{
"timestamp": "Fri Oct 25 2024 21:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -28.02,
"SunAzimuth": 285.09
},
{
"timestamp": "Fri Oct 25 2024 21:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -28.79,
"SunAzimuth": 286.17
},
{
"timestamp": "Fri Oct 25 2024 21:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -29.56,
"SunAzimuth": 287.25
},
{
"timestamp": "Fri Oct 25 2024 21:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -30.32,
"SunAzimuth": 288.35
},
{
"timestamp": "Fri Oct 25 2024 21:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -31.08,
"SunAzimuth": 289.47
},
{
"timestamp": "Fri Oct 25 2024 21:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -31.84,
"SunAzimuth": 290.59
},
{
"timestamp": "Fri Oct 25 2024 21:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -32.58,
"SunAzimuth": 291.73
},
{
"timestamp": "Fri Oct 25 2024 21:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -33.33,
"SunAzimuth": 292.89
},
{
"timestamp": "Fri Oct 25 2024 21:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -34.06,
"SunAzimuth": 294.06
},
{
"timestamp": "Fri Oct 25 2024 21:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -34.79,
"SunAzimuth": 295.25
},
{
"timestamp": "Fri Oct 25 2024 21:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -35.51,
"SunAzimuth": 296.45
},
{
"timestamp": "Fri Oct 25 2024 22:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -36.23,
"SunAzimuth": 297.68
},
{
"timestamp": "Fri Oct 25 2024 22:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -36.93,
"SunAzimuth": 298.92
},
{
"timestamp": "Fri Oct 25 2024 22:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -37.63,
"SunAzimuth": 300.18
},
{
"timestamp": "Fri Oct 25 2024 22:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -38.32,
"SunAzimuth": 301.46
},
{
"timestamp": "Fri Oct 25 2024 22:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -39,
"SunAzimuth": 302.76
},
{
"timestamp": "Fri Oct 25 2024 22:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -39.67,
"SunAzimuth": 304.08
},
{
"timestamp": "Fri Oct 25 2024 22:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -40.33,
"SunAzimuth": 305.42
},
{
"timestamp": "Fri Oct 25 2024 22:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -40.98,
"SunAzimuth": 306.78
},
{
"timestamp": "Fri Oct 25 2024 22:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -41.61,
"SunAzimuth": 308.17
},
{
"timestamp": "Fri Oct 25 2024 22:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -42.24,
"SunAzimuth": 309.58
},
{
"timestamp": "Fri Oct 25 2024 22:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -42.85,
"SunAzimuth": 311.01
},
{
"timestamp": "Fri Oct 25 2024 22:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -43.45,
"SunAzimuth": 312.47
},
{
"timestamp": "Fri Oct 25 2024 23:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -44.03,
"SunAzimuth": 313.96
},
{
"timestamp": "Fri Oct 25 2024 23:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -44.6,
"SunAzimuth": 315.47
},
{
"timestamp": "Fri Oct 25 2024 23:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -45.16,
"SunAzimuth": 317
},
{
"timestamp": "Fri Oct 25 2024 23:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -45.7,
"SunAzimuth": 318.56
},
{
"timestamp": "Fri Oct 25 2024 23:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -46.22,
"SunAzimuth": 320.15
},
{
"timestamp": "Fri Oct 25 2024 23:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -46.73,
"SunAzimuth": 321.76
},
{
"timestamp": "Fri Oct 25 2024 23:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -47.21,
"SunAzimuth": 323.4
},
{
"timestamp": "Fri Oct 25 2024 23:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -47.68,
"SunAzimuth": 325.07
},
{
"timestamp": "Fri Oct 25 2024 23:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -48.13,
"SunAzimuth": 326.77
},
{
"timestamp": "Fri Oct 25 2024 23:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -48.56,
"SunAzimuth": 328.49
},
{
"timestamp": "Fri Oct 25 2024 23:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -48.97,
"SunAzimuth": 330.23
},
{
"timestamp": "Fri Oct 25 2024 23:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.36,
"SunAzimuth": 332
},
{
"timestamp": "Sat Oct 26 2024 00:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"SunAltitude": -49.73,
"SunAzimuth": 333.8
}
]
}

JsonData Moon:

{
"object": "list",
"data": [
{
"timestamp": "Fri Oct 25 2024 00:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 1.19,
"MoonAzimuth": 53.91
},
{
"timestamp": "Fri Oct 25 2024 00:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 1.75,
"MoonAzimuth": 54.84
},
{
"timestamp": "Fri Oct 25 2024 00:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 2.33,
"MoonAzimuth": 55.76
},
{
"timestamp": "Fri Oct 25 2024 00:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 2.93,
"MoonAzimuth": 56.68
},
{
"timestamp": "Fri Oct 25 2024 00:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 3.54,
"MoonAzimuth": 57.59
},
{
"timestamp": "Fri Oct 25 2024 00:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 4.16,
"MoonAzimuth": 58.5
},
{
"timestamp": "Fri Oct 25 2024 00:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 4.8,
"MoonAzimuth": 59.41
},
{
"timestamp": "Fri Oct 25 2024 00:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 5.44,
"MoonAzimuth": 60.31
},
{
"timestamp": "Fri Oct 25 2024 00:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 6.09,
"MoonAzimuth": 61.21
},
{
"timestamp": "Fri Oct 25 2024 00:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 6.75,
"MoonAzimuth": 62.1
},
{
"timestamp": "Fri Oct 25 2024 00:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 7.42,
"MoonAzimuth": 62.99
},
{
"timestamp": "Fri Oct 25 2024 00:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 8.09,
"MoonAzimuth": 63.88
},
{
"timestamp": "Fri Oct 25 2024 01:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 8.77,
"MoonAzimuth": 64.77
},
{
"timestamp": "Fri Oct 25 2024 01:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 9.45,
"MoonAzimuth": 65.66
},
{
"timestamp": "Fri Oct 25 2024 01:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 10.14,
"MoonAzimuth": 66.54
},
{
"timestamp": "Fri Oct 25 2024 01:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 10.84,
"MoonAzimuth": 67.42
},
{
"timestamp": "Fri Oct 25 2024 01:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 11.54,
"MoonAzimuth": 68.3
},
{
"timestamp": "Fri Oct 25 2024 01:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 12.25,
"MoonAzimuth": 69.18
},
{
"timestamp": "Fri Oct 25 2024 01:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 12.96,
"MoonAzimuth": 70.05
},
{
"timestamp": "Fri Oct 25 2024 01:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 13.68,
"MoonAzimuth": 70.93
},
{
"timestamp": "Fri Oct 25 2024 01:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 14.4,
"MoonAzimuth": 71.8
},
{
"timestamp": "Fri Oct 25 2024 01:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 15.12,
"MoonAzimuth": 72.68
},
{
"timestamp": "Fri Oct 25 2024 01:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 15.85,
"MoonAzimuth": 73.55
},
{
"timestamp": "Fri Oct 25 2024 01:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 16.58,
"MoonAzimuth": 74.43
},
{
"timestamp": "Fri Oct 25 2024 02:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 17.31,
"MoonAzimuth": 75.3
},
{
"timestamp": "Fri Oct 25 2024 02:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 18.05,
"MoonAzimuth": 76.18
},
{
"timestamp": "Fri Oct 25 2024 02:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 18.79,
"MoonAzimuth": 77.06
},
{
"timestamp": "Fri Oct 25 2024 02:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 19.54,
"MoonAzimuth": 77.94
},
{
"timestamp": "Fri Oct 25 2024 02:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 20.28,
"MoonAzimuth": 78.82
},
{
"timestamp": "Fri Oct 25 2024 02:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 21.03,
"MoonAzimuth": 79.7
},
{
"timestamp": "Fri Oct 25 2024 02:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 21.78,
"MoonAzimuth": 80.59
},
{
"timestamp": "Fri Oct 25 2024 02:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 22.54,
"MoonAzimuth": 81.47
},
{
"timestamp": "Fri Oct 25 2024 02:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 23.29,
"MoonAzimuth": 82.37
},
{
"timestamp": "Fri Oct 25 2024 02:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 24.05,
"MoonAzimuth": 83.26
},
{
"timestamp": "Fri Oct 25 2024 02:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 24.81,
"MoonAzimuth": 84.16
},
{
"timestamp": "Fri Oct 25 2024 02:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 25.57,
"MoonAzimuth": 85.07
},
{
"timestamp": "Fri Oct 25 2024 03:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 26.33,
"MoonAzimuth": 85.97
},
{
"timestamp": "Fri Oct 25 2024 03:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 27.09,
"MoonAzimuth": 86.89
},
{
"timestamp": "Fri Oct 25 2024 03:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 27.85,
"MoonAzimuth": 87.81
},
{
"timestamp": "Fri Oct 25 2024 03:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 28.62,
"MoonAzimuth": 88.73
},
{
"timestamp": "Fri Oct 25 2024 03:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 29.38,
"MoonAzimuth": 89.67
},
{
"timestamp": "Fri Oct 25 2024 03:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 30.14,
"MoonAzimuth": 90.61
},
{
"timestamp": "Fri Oct 25 2024 03:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 30.91,
"MoonAzimuth": 91.55
},
{
"timestamp": "Fri Oct 25 2024 03:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 31.67,
"MoonAzimuth": 92.51
},
{
"timestamp": "Fri Oct 25 2024 03:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 32.43,
"MoonAzimuth": 93.47
},
{
"timestamp": "Fri Oct 25 2024 03:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 33.19,
"MoonAzimuth": 94.45
},
{
"timestamp": "Fri Oct 25 2024 03:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 33.95,
"MoonAzimuth": 95.43
},
{
"timestamp": "Fri Oct 25 2024 03:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 34.71,
"MoonAzimuth": 96.42
},
{
"timestamp": "Fri Oct 25 2024 04:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 35.47,
"MoonAzimuth": 97.43
},
{
"timestamp": "Fri Oct 25 2024 04:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 36.23,
"MoonAzimuth": 98.45
},
{
"timestamp": "Fri Oct 25 2024 04:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 36.98,
"MoonAzimuth": 99.48
},
{
"timestamp": "Fri Oct 25 2024 04:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 37.73,
"MoonAzimuth": 100.52
},
{
"timestamp": "Fri Oct 25 2024 04:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 38.48,
"MoonAzimuth": 101.57
},
{
"timestamp": "Fri Oct 25 2024 04:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 39.23,
"MoonAzimuth": 102.64
},
{
"timestamp": "Fri Oct 25 2024 04:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 39.97,
"MoonAzimuth": 103.73
},
{
"timestamp": "Fri Oct 25 2024 04:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 40.71,
"MoonAzimuth": 104.83
},
{
"timestamp": "Fri Oct 25 2024 04:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 41.45,
"MoonAzimuth": 105.95
},
{
"timestamp": "Fri Oct 25 2024 04:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 42.18,
"MoonAzimuth": 107.09
},
{
"timestamp": "Fri Oct 25 2024 04:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 42.91,
"MoonAzimuth": 108.25
},
{
"timestamp": "Fri Oct 25 2024 04:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 43.63,
"MoonAzimuth": 109.42
},
{
"timestamp": "Fri Oct 25 2024 05:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 44.34,
"MoonAzimuth": 110.62
},
{
"timestamp": "Fri Oct 25 2024 05:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 45.05,
"MoonAzimuth": 111.83
},
{
"timestamp": "Fri Oct 25 2024 05:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 45.76,
"MoonAzimuth": 113.08
},
{
"timestamp": "Fri Oct 25 2024 05:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 46.46,
"MoonAzimuth": 114.34
},
{
"timestamp": "Fri Oct 25 2024 05:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 47.15,
"MoonAzimuth": 115.63
},
{
"timestamp": "Fri Oct 25 2024 05:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 47.83,
"MoonAzimuth": 116.94
},
{
"timestamp": "Fri Oct 25 2024 05:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 48.51,
"MoonAzimuth": 118.28
},
{
"timestamp": "Fri Oct 25 2024 05:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 49.17,
"MoonAzimuth": 119.65
},
{
"timestamp": "Fri Oct 25 2024 05:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 49.83,
"MoonAzimuth": 121.05
},
{
"timestamp": "Fri Oct 25 2024 05:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 50.47,
"MoonAzimuth": 122.48
},
{
"timestamp": "Fri Oct 25 2024 05:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 51.11,
"MoonAzimuth": 123.94
},
{
"timestamp": "Fri Oct 25 2024 05:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 51.74,
"MoonAzimuth": 125.44
},
{
"timestamp": "Fri Oct 25 2024 06:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 52.35,
"MoonAzimuth": 126.96
},
{
"timestamp": "Fri Oct 25 2024 06:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 52.95,
"MoonAzimuth": 128.53
},
{
"timestamp": "Fri Oct 25 2024 06:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 53.54,
"MoonAzimuth": 130.12
},
{
"timestamp": "Fri Oct 25 2024 06:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 54.11,
"MoonAzimuth": 131.76
},
{
"timestamp": "Fri Oct 25 2024 06:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 54.67,
"MoonAzimuth": 133.43
},
{
"timestamp": "Fri Oct 25 2024 06:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 55.21,
"MoonAzimuth": 135.14
},
{
"timestamp": "Fri Oct 25 2024 06:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 55.73,
"MoonAzimuth": 136.89
},
{
"timestamp": "Fri Oct 25 2024 06:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 56.24,
"MoonAzimuth": 138.68
},
{
"timestamp": "Fri Oct 25 2024 06:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 56.73,
"MoonAzimuth": 140.51
},
{
"timestamp": "Fri Oct 25 2024 06:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 57.2,
"MoonAzimuth": 142.38
},
{
"timestamp": "Fri Oct 25 2024 06:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 57.65,
"MoonAzimuth": 144.29
},
{
"timestamp": "Fri Oct 25 2024 06:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 58.08,
"MoonAzimuth": 146.24
},
{
"timestamp": "Fri Oct 25 2024 07:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 58.48,
"MoonAzimuth": 148.23
},
{
"timestamp": "Fri Oct 25 2024 07:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 58.87,
"MoonAzimuth": 150.27
},
{
"timestamp": "Fri Oct 25 2024 07:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.22,
"MoonAzimuth": 152.34
},
{
"timestamp": "Fri Oct 25 2024 07:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.56,
"MoonAzimuth": 154.44
},
{
"timestamp": "Fri Oct 25 2024 07:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.87,
"MoonAzimuth": 156.59
},
{
"timestamp": "Fri Oct 25 2024 07:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.15,
"MoonAzimuth": 158.76
},
{
"timestamp": "Fri Oct 25 2024 07:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.4,
"MoonAzimuth": 160.97
},
{
"timestamp": "Fri Oct 25 2024 07:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.62,
"MoonAzimuth": 163.21
},
{
"timestamp": "Fri Oct 25 2024 07:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.82,
"MoonAzimuth": 165.47
},
{
"timestamp": "Fri Oct 25 2024 07:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.98,
"MoonAzimuth": 167.76
},
{
"timestamp": "Fri Oct 25 2024 07:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.12,
"MoonAzimuth": 170.06
},
{
"timestamp": "Fri Oct 25 2024 07:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.22,
"MoonAzimuth": 172.39
},
{
"timestamp": "Fri Oct 25 2024 08:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.29,
"MoonAzimuth": 174.72
},
{
"timestamp": "Fri Oct 25 2024 08:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.33,
"MoonAzimuth": 177.06
},
{
"timestamp": "Fri Oct 25 2024 08:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.34,
"MoonAzimuth": 179.41
},
{
"timestamp": "Fri Oct 25 2024 08:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.32,
"MoonAzimuth": 181.75
},
{
"timestamp": "Fri Oct 25 2024 08:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.27,
"MoonAzimuth": 184.09
},
{
"timestamp": "Fri Oct 25 2024 08:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.18,
"MoonAzimuth": 186.42
},
{
"timestamp": "Fri Oct 25 2024 08:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 61.07,
"MoonAzimuth": 188.74
},
{
"timestamp": "Fri Oct 25 2024 08:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.92,
"MoonAzimuth": 191.04
},
{
"timestamp": "Fri Oct 25 2024 08:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.74,
"MoonAzimuth": 193.32
},
{
"timestamp": "Fri Oct 25 2024 08:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.53,
"MoonAzimuth": 195.58
},
{
"timestamp": "Fri Oct 25 2024 08:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.3,
"MoonAzimuth": 197.8
},
{
"timestamp": "Fri Oct 25 2024 08:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 60.03,
"MoonAzimuth": 200
},
{
"timestamp": "Fri Oct 25 2024 09:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.74,
"MoonAzimuth": 202.17
},
{
"timestamp": "Fri Oct 25 2024 09:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.42,
"MoonAzimuth": 204.3
},
{
"timestamp": "Fri Oct 25 2024 09:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 59.07,
"MoonAzimuth": 206.4
},
{
"timestamp": "Fri Oct 25 2024 09:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 58.7,
"MoonAzimuth": 208.46
},
{
"timestamp": "Fri Oct 25 2024 09:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 58.31,
"MoonAzimuth": 210.48
},
{
"timestamp": "Fri Oct 25 2024 09:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 57.89,
"MoonAzimuth": 212.46
},
{
"timestamp": "Fri Oct 25 2024 09:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 57.45,
"MoonAzimuth": 214.4
},
{
"timestamp": "Fri Oct 25 2024 09:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 56.99,
"MoonAzimuth": 216.3
},
{
"timestamp": "Fri Oct 25 2024 09:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 56.51,
"MoonAzimuth": 218.15
},
{
"timestamp": "Fri Oct 25 2024 09:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 56,
"MoonAzimuth": 219.97
},
{
"timestamp": "Fri Oct 25 2024 09:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 55.48,
"MoonAzimuth": 221.75
},
{
"timestamp": "Fri Oct 25 2024 09:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 54.95,
"MoonAzimuth": 223.48
},
{
"timestamp": "Fri Oct 25 2024 10:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 54.39,
"MoonAzimuth": 225.18
},
{
"timestamp": "Fri Oct 25 2024 10:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 53.82,
"MoonAzimuth": 226.84
},
{
"timestamp": "Fri Oct 25 2024 10:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 53.24,
"MoonAzimuth": 228.46
},
{
"timestamp": "Fri Oct 25 2024 10:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 52.64,
"MoonAzimuth": 230.05
},
{
"timestamp": "Fri Oct 25 2024 10:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 52.03,
"MoonAzimuth": 231.6
},
{
"timestamp": "Fri Oct 25 2024 10:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 51.4,
"MoonAzimuth": 233.11
},
{
"timestamp": "Fri Oct 25 2024 10:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 50.76,
"MoonAzimuth": 234.59
},
{
"timestamp": "Fri Oct 25 2024 10:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 50.11,
"MoonAzimuth": 236.04
},
{
"timestamp": "Fri Oct 25 2024 10:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 49.45,
"MoonAzimuth": 237.46
},
{
"timestamp": "Fri Oct 25 2024 10:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 48.78,
"MoonAzimuth": 238.85
},
{
"timestamp": "Fri Oct 25 2024 10:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 48.1,
"MoonAzimuth": 240.21
},
{
"timestamp": "Fri Oct 25 2024 10:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 47.41,
"MoonAzimuth": 241.54
},
{
"timestamp": "Fri Oct 25 2024 11:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 46.72,
"MoonAzimuth": 242.84
},
{
"timestamp": "Fri Oct 25 2024 11:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 46.01,
"MoonAzimuth": 244.12
},
{
"timestamp": "Fri Oct 25 2024 11:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 45.3,
"MoonAzimuth": 245.37
},
{
"timestamp": "Fri Oct 25 2024 11:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 44.58,
"MoonAzimuth": 246.6
},
{
"timestamp": "Fri Oct 25 2024 11:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 43.86,
"MoonAzimuth": 247.81
},
{
"timestamp": "Fri Oct 25 2024 11:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 43.12,
"MoonAzimuth": 249
},
{
"timestamp": "Fri Oct 25 2024 11:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 42.39,
"MoonAzimuth": 250.16
},
{
"timestamp": "Fri Oct 25 2024 11:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 41.64,
"MoonAzimuth": 251.31
},
{
"timestamp": "Fri Oct 25 2024 11:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 40.9,
"MoonAzimuth": 252.44
},
{
"timestamp": "Fri Oct 25 2024 11:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 40.15,
"MoonAzimuth": 253.54
},
{
"timestamp": "Fri Oct 25 2024 11:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 39.39,
"MoonAzimuth": 254.64
},
{
"timestamp": "Fri Oct 25 2024 11:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 38.63,
"MoonAzimuth": 255.71
},
{
"timestamp": "Fri Oct 25 2024 12:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 37.87,
"MoonAzimuth": 256.77
},
{
"timestamp": "Fri Oct 25 2024 12:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 37.1,
"MoonAzimuth": 257.82
},
{
"timestamp": "Fri Oct 25 2024 12:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 36.33,
"MoonAzimuth": 258.85
},
{
"timestamp": "Fri Oct 25 2024 12:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 35.56,
"MoonAzimuth": 259.87
},
{
"timestamp": "Fri Oct 25 2024 12:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 34.78,
"MoonAzimuth": 260.88
},
{
"timestamp": "Fri Oct 25 2024 12:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 34.01,
"MoonAzimuth": 261.88
},
{
"timestamp": "Fri Oct 25 2024 12:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 33.23,
"MoonAzimuth": 262.86
},
{
"timestamp": "Fri Oct 25 2024 12:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 32.45,
"MoonAzimuth": 263.84
},
{
"timestamp": "Fri Oct 25 2024 12:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 31.67,
"MoonAzimuth": 264.8
},
{
"timestamp": "Fri Oct 25 2024 12:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 30.88,
"MoonAzimuth": 265.76
},
{
"timestamp": "Fri Oct 25 2024 12:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 30.1,
"MoonAzimuth": 266.7
},
{
"timestamp": "Fri Oct 25 2024 12:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 29.31,
"MoonAzimuth": 267.64
},
{
"timestamp": "Fri Oct 25 2024 13:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 28.53,
"MoonAzimuth": 268.57
},
{
"timestamp": "Fri Oct 25 2024 13:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 27.75,
"MoonAzimuth": 269.5
},
{
"timestamp": "Fri Oct 25 2024 13:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 26.96,
"MoonAzimuth": 270.41
},
{
"timestamp": "Fri Oct 25 2024 13:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 26.17,
"MoonAzimuth": 271.33
},
{
"timestamp": "Fri Oct 25 2024 13:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 25.39,
"MoonAzimuth": 272.23
},
{
"timestamp": "Fri Oct 25 2024 13:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 24.61,
"MoonAzimuth": 273.13
},
{
"timestamp": "Fri Oct 25 2024 13:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 23.82,
"MoonAzimuth": 274.03
},
{
"timestamp": "Fri Oct 25 2024 13:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 23.04,
"MoonAzimuth": 274.92
},
{
"timestamp": "Fri Oct 25 2024 13:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 22.26,
"MoonAzimuth": 275.81
},
{
"timestamp": "Fri Oct 25 2024 13:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 21.48,
"MoonAzimuth": 276.69
},
{
"timestamp": "Fri Oct 25 2024 13:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 20.7,
"MoonAzimuth": 277.57
},
{
"timestamp": "Fri Oct 25 2024 13:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 19.92,
"MoonAzimuth": 278.45
},
{
"timestamp": "Fri Oct 25 2024 14:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 19.15,
"MoonAzimuth": 279.33
},
{
"timestamp": "Fri Oct 25 2024 14:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 18.37,
"MoonAzimuth": 280.2
},
{
"timestamp": "Fri Oct 25 2024 14:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 17.6,
"MoonAzimuth": 281.07
},
{
"timestamp": "Fri Oct 25 2024 14:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 16.83,
"MoonAzimuth": 281.94
},
{
"timestamp": "Fri Oct 25 2024 14:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 16.07,
"MoonAzimuth": 282.81
},
{
"timestamp": "Fri Oct 25 2024 14:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 15.31,
"MoonAzimuth": 283.68
},
{
"timestamp": "Fri Oct 25 2024 14:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 14.55,
"MoonAzimuth": 284.55
},
{
"timestamp": "Fri Oct 25 2024 14:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 13.79,
"MoonAzimuth": 285.42
},
{
"timestamp": "Fri Oct 25 2024 14:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 13.03,
"MoonAzimuth": 286.28
},
{
"timestamp": "Fri Oct 25 2024 14:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 12.28,
"MoonAzimuth": 287.15
},
{
"timestamp": "Fri Oct 25 2024 14:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 11.54,
"MoonAzimuth": 288.02
},
{
"timestamp": "Fri Oct 25 2024 14:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 10.8,
"MoonAzimuth": 288.89
},
{
"timestamp": "Fri Oct 25 2024 15:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 10.06,
"MoonAzimuth": 289.77
},
{
"timestamp": "Fri Oct 25 2024 15:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 9.33,
"MoonAzimuth": 290.64
},
{
"timestamp": "Fri Oct 25 2024 15:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 8.6,
"MoonAzimuth": 291.52
},
{
"timestamp": "Fri Oct 25 2024 15:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 7.88,
"MoonAzimuth": 292.39
},
{
"timestamp": "Fri Oct 25 2024 15:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 7.16,
"MoonAzimuth": 293.27
},
{
"timestamp": "Fri Oct 25 2024 15:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 6.45,
"MoonAzimuth": 294.16
},
{
"timestamp": "Fri Oct 25 2024 15:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 5.74,
"MoonAzimuth": 295.04
},
{
"timestamp": "Fri Oct 25 2024 15:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 5.05,
"MoonAzimuth": 295.93
},
{
"timestamp": "Fri Oct 25 2024 15:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 4.36,
"MoonAzimuth": 296.82
},
{
"timestamp": "Fri Oct 25 2024 15:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 3.68,
"MoonAzimuth": 297.72
},
{
"timestamp": "Fri Oct 25 2024 15:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 3.02,
"MoonAzimuth": 298.62
},
{
"timestamp": "Fri Oct 25 2024 15:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 2.37,
"MoonAzimuth": 299.52
},
{
"timestamp": "Fri Oct 25 2024 16:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 1.73,
"MoonAzimuth": 300.43
},
{
"timestamp": "Fri Oct 25 2024 16:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 1.12,
"MoonAzimuth": 301.34
},
{
"timestamp": "Fri Oct 25 2024 16:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": 0.53,
"MoonAzimuth": 302.26
},
{
"timestamp": "Fri Oct 25 2024 16:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -0.12,
"MoonAzimuth": 303.18
},
{
"timestamp": "Fri Oct 25 2024 16:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -0.78,
"MoonAzimuth": 304.11
},
{
"timestamp": "Fri Oct 25 2024 16:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -1.43,
"MoonAzimuth": 305.04
},
{
"timestamp": "Fri Oct 25 2024 16:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -2.08,
"MoonAzimuth": 305.98
},
{
"timestamp": "Fri Oct 25 2024 16:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -2.72,
"MoonAzimuth": 306.93
},
{
"timestamp": "Fri Oct 25 2024 16:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -3.34,
"MoonAzimuth": 307.87
},
{
"timestamp": "Fri Oct 25 2024 16:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -3.97,
"MoonAzimuth": 308.83
},
{
"timestamp": "Fri Oct 25 2024 16:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -4.58,
"MoonAzimuth": 309.79
},
{
"timestamp": "Fri Oct 25 2024 16:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -5.18,
"MoonAzimuth": 310.76
},
{
"timestamp": "Fri Oct 25 2024 17:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -5.78,
"MoonAzimuth": 311.74
},
{
"timestamp": "Fri Oct 25 2024 17:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -6.37,
"MoonAzimuth": 312.72
},
{
"timestamp": "Fri Oct 25 2024 17:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -6.95,
"MoonAzimuth": 313.7
},
{
"timestamp": "Fri Oct 25 2024 17:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -7.52,
"MoonAzimuth": 314.7
},
{
"timestamp": "Fri Oct 25 2024 17:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -8.08,
"MoonAzimuth": 315.7
},
{
"timestamp": "Fri Oct 25 2024 17:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -8.63,
"MoonAzimuth": 316.71
},
{
"timestamp": "Fri Oct 25 2024 17:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -9.17,
"MoonAzimuth": 317.73
},
{
"timestamp": "Fri Oct 25 2024 17:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -9.7,
"MoonAzimuth": 318.75
},
{
"timestamp": "Fri Oct 25 2024 17:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -10.22,
"MoonAzimuth": 319.78
},
{
"timestamp": "Fri Oct 25 2024 17:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -10.73,
"MoonAzimuth": 320.82
},
{
"timestamp": "Fri Oct 25 2024 17:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -11.23,
"MoonAzimuth": 321.86
},
{
"timestamp": "Fri Oct 25 2024 17:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -11.71,
"MoonAzimuth": 322.92
},
{
"timestamp": "Fri Oct 25 2024 18:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -12.19,
"MoonAzimuth": 323.98
},
{
"timestamp": "Fri Oct 25 2024 18:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -12.66,
"MoonAzimuth": 325.04
},
{
"timestamp": "Fri Oct 25 2024 18:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.11,
"MoonAzimuth": 326.12
},
{
"timestamp": "Fri Oct 25 2024 18:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.55,
"MoonAzimuth": 327.2
},
{
"timestamp": "Fri Oct 25 2024 18:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.98,
"MoonAzimuth": 328.29
},
{
"timestamp": "Fri Oct 25 2024 18:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -14.39,
"MoonAzimuth": 329.39
},
{
"timestamp": "Fri Oct 25 2024 18:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -14.8,
"MoonAzimuth": 330.49
},
{
"timestamp": "Fri Oct 25 2024 18:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.19,
"MoonAzimuth": 331.61
},
{
"timestamp": "Fri Oct 25 2024 18:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.57,
"MoonAzimuth": 332.72
},
{
"timestamp": "Fri Oct 25 2024 18:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.93,
"MoonAzimuth": 333.85
},
{
"timestamp": "Fri Oct 25 2024 18:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.28,
"MoonAzimuth": 334.98
},
{
"timestamp": "Fri Oct 25 2024 18:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.61,
"MoonAzimuth": 336.12
},
{
"timestamp": "Fri Oct 25 2024 19:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.94,
"MoonAzimuth": 337.27
},
{
"timestamp": "Fri Oct 25 2024 19:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.24,
"MoonAzimuth": 338.42
},
{
"timestamp": "Fri Oct 25 2024 19:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.54,
"MoonAzimuth": 339.58
},
{
"timestamp": "Fri Oct 25 2024 19:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.82,
"MoonAzimuth": 340.75
},
{
"timestamp": "Fri Oct 25 2024 19:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.08,
"MoonAzimuth": 341.92
},
{
"timestamp": "Fri Oct 25 2024 19:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.33,
"MoonAzimuth": 343.09
},
{
"timestamp": "Fri Oct 25 2024 19:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.56,
"MoonAzimuth": 344.28
},
{
"timestamp": "Fri Oct 25 2024 19:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.78,
"MoonAzimuth": 345.46
},
{
"timestamp": "Fri Oct 25 2024 19:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.98,
"MoonAzimuth": 346.65
},
{
"timestamp": "Fri Oct 25 2024 19:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.17,
"MoonAzimuth": 347.85
},
{
"timestamp": "Fri Oct 25 2024 19:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.34,
"MoonAzimuth": 349.05
},
{
"timestamp": "Fri Oct 25 2024 19:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.5,
"MoonAzimuth": 350.25
},
{
"timestamp": "Fri Oct 25 2024 20:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.64,
"MoonAzimuth": 351.46
},
{
"timestamp": "Fri Oct 25 2024 20:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.76,
"MoonAzimuth": 352.67
},
{
"timestamp": "Fri Oct 25 2024 20:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.87,
"MoonAzimuth": 353.88
},
{
"timestamp": "Fri Oct 25 2024 20:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.96,
"MoonAzimuth": 355.1
},
{
"timestamp": "Fri Oct 25 2024 20:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.03,
"MoonAzimuth": 356.32
},
{
"timestamp": "Fri Oct 25 2024 20:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.09,
"MoonAzimuth": 357.54
},
{
"timestamp": "Fri Oct 25 2024 20:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.13,
"MoonAzimuth": 358.76
},
{
"timestamp": "Fri Oct 25 2024 20:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.15,
"MoonAzimuth": 359.98
},
{
"timestamp": "Fri Oct 25 2024 20:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.16,
"MoonAzimuth": 1.2
},
{
"timestamp": "Fri Oct 25 2024 20:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.15,
"MoonAzimuth": 2.42
},
{
"timestamp": "Fri Oct 25 2024 20:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.13,
"MoonAzimuth": 3.64
},
{
"timestamp": "Fri Oct 25 2024 20:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.09,
"MoonAzimuth": 4.87
},
{
"timestamp": "Fri Oct 25 2024 21:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -20.03,
"MoonAzimuth": 6.09
},
{
"timestamp": "Fri Oct 25 2024 21:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.95,
"MoonAzimuth": 7.3
},
{
"timestamp": "Fri Oct 25 2024 21:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.86,
"MoonAzimuth": 8.52
},
{
"timestamp": "Fri Oct 25 2024 21:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.75,
"MoonAzimuth": 9.74
},
{
"timestamp": "Fri Oct 25 2024 21:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.63,
"MoonAzimuth": 10.95
},
{
"timestamp": "Fri Oct 25 2024 21:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.49,
"MoonAzimuth": 12.16
},
{
"timestamp": "Fri Oct 25 2024 21:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.34,
"MoonAzimuth": 13.36
},
{
"timestamp": "Fri Oct 25 2024 21:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -19.16,
"MoonAzimuth": 14.57
},
{
"timestamp": "Fri Oct 25 2024 21:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.98,
"MoonAzimuth": 15.77
},
{
"timestamp": "Fri Oct 25 2024 21:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.77,
"MoonAzimuth": 16.96
},
{
"timestamp": "Fri Oct 25 2024 21:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.56,
"MoonAzimuth": 18.15
},
{
"timestamp": "Fri Oct 25 2024 21:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.32,
"MoonAzimuth": 19.34
},
{
"timestamp": "Fri Oct 25 2024 22:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -18.07,
"MoonAzimuth": 20.52
},
{
"timestamp": "Fri Oct 25 2024 22:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.81,
"MoonAzimuth": 21.69
},
{
"timestamp": "Fri Oct 25 2024 22:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.53,
"MoonAzimuth": 22.86
},
{
"timestamp": "Fri Oct 25 2024 22:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -17.24,
"MoonAzimuth": 24.02
},
{
"timestamp": "Fri Oct 25 2024 22:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.93,
"MoonAzimuth": 25.18
},
{
"timestamp": "Fri Oct 25 2024 22:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.61,
"MoonAzimuth": 26.33
},
{
"timestamp": "Fri Oct 25 2024 22:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -16.27,
"MoonAzimuth": 27.48
},
{
"timestamp": "Fri Oct 25 2024 22:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.92,
"MoonAzimuth": 28.62
},
{
"timestamp": "Fri Oct 25 2024 22:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.56,
"MoonAzimuth": 29.75
},
{
"timestamp": "Fri Oct 25 2024 22:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -15.18,
"MoonAzimuth": 30.88
},
{
"timestamp": "Fri Oct 25 2024 22:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -14.79,
"MoonAzimuth": 32
},
{
"timestamp": "Fri Oct 25 2024 22:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -14.39,
"MoonAzimuth": 33.11
},
{
"timestamp": "Fri Oct 25 2024 23:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.98,
"MoonAzimuth": 34.21
},
{
"timestamp": "Fri Oct 25 2024 23:05:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.55,
"MoonAzimuth": 35.31
},
{
"timestamp": "Fri Oct 25 2024 23:10:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -13.11,
"MoonAzimuth": 36.4
},
{
"timestamp": "Fri Oct 25 2024 23:15:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -12.66,
"MoonAzimuth": 37.49
},
{
"timestamp": "Fri Oct 25 2024 23:20:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -12.19,
"MoonAzimuth": 38.56
},
{
"timestamp": "Fri Oct 25 2024 23:25:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -11.72,
"MoonAzimuth": 39.63
},
{
"timestamp": "Fri Oct 25 2024 23:30:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -11.23,
"MoonAzimuth": 40.7
},
{
"timestamp": "Fri Oct 25 2024 23:35:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -10.74,
"MoonAzimuth": 41.75
},
{
"timestamp": "Fri Oct 25 2024 23:40:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -10.23,
"MoonAzimuth": 42.8
},
{
"timestamp": "Fri Oct 25 2024 23:45:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -9.71,
"MoonAzimuth": 43.84
},
{
"timestamp": "Fri Oct 25 2024 23:50:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -9.18,
"MoonAzimuth": 44.88
},
{
"timestamp": "Fri Oct 25 2024 23:55:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -8.64,
"MoonAzimuth": 45.91
},
{
"timestamp": "Sat Oct 26 2024 00:00:00 GMT+0200 (Mitteleuropäische Sommerzeit)",
"MoonAltitude": -8.1,
"MoonAzimuth": 46.93
}
]
}

@ThomDietrich
Copy link

Hey guys!
Here at rejuvenate we welcome each and every contributor to be part of the project. There is no main developer.
I like your feature and you are I'd happily accept a PR with that feature.

@ngocjohn
Copy link

@UweLoyal I added a graph to my custom card, you can try mine. But it's just moon data.. https://github.com/ngocjohn/lunar-phase-card/releases/tag/v1.6.0

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

3 participants