apilayer / weatherstack

Real-Time, Historical World Weather Data & Forecast API
https://weatherstack.com
57 stars 12 forks source link

No Forecast #15

Open edouardr opened 3 years ago

edouardr commented 3 years ago

Reproduction link

https://api.weatherstack.com/forecast?&query=New%20York&forecast_days=7&hourly=1

What is expected?

AS per the documentation, the result of this call should return an object like:

{
    "request": {
        "type": "City",
        "query": "New York, United States of America",
        "language": "en",
        "unit": "m"
    },
    "location": {
        "name": "New York",
        "country": "United States of America",
        "region": "New York",
        "lat": "40.714",
        "lon": "-74.006",
        "timezone_id": "America/New_York",
        "localtime": "2019-09-07 11:38",
        "localtime_epoch": 1567856280,
        "utc_offset": "-4.0"
    },
    "current": {
        "observation_time": "03:38 PM",
        "temperature": 18,
        "weather_code": 113,
        "weather_icons": [
            "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png"
        ],
        "weather_descriptions": [
            "Sunny"
        ],
        "wind_speed": 0,
        "wind_degree": 345,
        "wind_dir": "NNW",
        "pressure": 1011,
        "precip": 0,
        "humidity": 58,
        "cloudcover": 0,
        "feelslike": 18,
        "uv_index": 5,
        "visibility": 16
    },
    "forecast": {
        "2019-09-07": {
            "date": "2019-09-07",
            "date_epoch": 1567814400,
            "astro": {
                "sunrise": "06:28 AM",
                "sunset": "07:19 PM",
                "moonrise": "03:33 PM",
                "moonset": "12:17 AM",
                "moon_phase": "First Quarter",
                "moon_illumination": 54
            },
            "mintemp": 17,
            "maxtemp": 25,
            "avgtemp": 21,
            "totalsnow": 0,
            "sunhour": 10.3,
            "uv_index": 5,
            "hourly": [
                {
                    "time": "0",
                    "temperature": 18,
                    "wind_speed": 28,
                    "wind_degree": 15,
                    "wind_dir": "NNE",
                    "weather_code": 122,
                    "weather_icons": [
                        "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0004_black_low_cloud.png"
                    ],
                    "weather_descriptions": [
                        "Overcast"
                    ],
                    "precip": 0,
                    "humidity": 68,
                    "visibility": 10,
                    "pressure": 1008,
                    "cloudcover": 75,
                    "heatindex": 18,
                    "dewpoint": 12,
                    "windchill": 18,
                    "windgust": 35,
                    "feelslike": 18,
                    "chanceofrain": 0,
                    "chanceofremdry": 87,
                    "chanceofwindy": 0,
                    "chanceofovercast": 90,
                    "chanceofsunshine": 15,
                    "chanceoffrost": 0,
                    "chanceofhightemp": 0,
                    "chanceoffog": 0,
                    "chanceofsnow": 0,
                    "chanceofthunder": 0,
                    "uv_index": 0
                },
                {   "time": "300", ...   },
                {   "time": "600", ...   },
                // 6 more items
            ]
        }
    }
}

What is actually happening?

The result that I am getting is no more including the forecast property

{
    "request": {
        "type": "City",
        "query": "New York, United States of America",
        "language": "en",
        "unit": "m"
    },
    "location": {
        "name": "New York",
        "country": "United States of America",
        "region": "New York",
        "lat": "40.714",
        "lon": "-74.006",
        "timezone_id": "America/New_York",
        "localtime": "2021-08-24 02:08",
        "localtime_epoch": 1629770880,
        "utc_offset": "-4.0"
    },
    "current": {
        "observation_time": "06:08 AM",
        "temperature": 23,
        "weather_code": 113,
        "weather_icons": [
            "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0008_clear_sky_night.png"
        ],
        "weather_descriptions": [
            "Clear"
        ],
        "wind_speed": 9,
        "wind_degree": 280,
        "wind_dir": "W",
        "pressure": 1012,
        "precip": 0,
        "humidity": 85,
        "cloudcover": 0,
        "feelslike": 25,
        "uv_index": 1,
        "visibility": 16,
        "is_day": "no"
    }
}

This used to work perfectly fine yesterday.

dolidh commented 3 years ago

It was working yesterday. I'm having the same issues today.

Ameeraaaliya commented 1 year ago

Reproduction link

https://api.weatherstack.com/forecast?&query=New%20York&forecast_days=7&hourly=1

What is expected?

AS per the documentation, the result of this call should return an object like:

{
    "request": {
        "type": "City",
        "query": "New York, United States of America",
        "language": "en",
        "unit": "m"
    },
    "location": {
        "name": "New York",
        "country": "United States of America",
        "region": "New York",
        "lat": "40.714",
        "lon": "-74.006",
        "timezone_id": "America/New_York",
        "localtime": "2019-09-07 11:38",
        "localtime_epoch": 1567856280,
        "utc_offset": "-4.0"
    },
    "current": {
        "observation_time": "03:38 PM",
        "temperature": 18,
        "weather_code": 113,
        "weather_icons": [
            "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png"
        ],
        "weather_descriptions": [
            "Sunny"
        ],
        "wind_speed": 0,
        "wind_degree": 345,
        "wind_dir": "NNW",
        "pressure": 1011,
        "precip": 0,
        "humidity": 58,
        "cloudcover": 0,
        "feelslike": 18,
        "uv_index": 5,
        "visibility": 16
    },
    "forecast": {
        "2019-09-07": {
            "date": "2019-09-07",
            "date_epoch": 1567814400,
            "astro": {
                "sunrise": "06:28 AM",
                "sunset": "07:19 PM",
                "moonrise": "03:33 PM",
                "moonset": "12:17 AM",
                "moon_phase": "First Quarter",
                "moon_illumination": 54
            },
            "mintemp": 17,
            "maxtemp": 25,
            "avgtemp": 21,
            "totalsnow": 0,
            "sunhour": 10.3,
            "uv_index": 5,
            "hourly": [
                {
                    "time": "0",
                    "temperature": 18,
                    "wind_speed": 28,
                    "wind_degree": 15,
                    "wind_dir": "NNE",
                    "weather_code": 122,
                    "weather_icons": [
                        "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0004_black_low_cloud.png"
                    ],
                    "weather_descriptions": [
                        "Overcast"
                    ],
                    "precip": 0,
                    "humidity": 68,
                    "visibility": 10,
                    "pressure": 1008,
                    "cloudcover": 75,
                    "heatindex": 18,
                    "dewpoint": 12,
                    "windchill": 18,
                    "windgust": 35,
                    "feelslike": 18,
                    "chanceofrain": 0,
                    "chanceofremdry": 87,
                    "chanceofwindy": 0,
                    "chanceofovercast": 90,
                    "chanceofsunshine": 15,
                    "chanceoffrost": 0,
                    "chanceofhightemp": 0,
                    "chanceoffog": 0,
                    "chanceofsnow": 0,
                    "chanceofthunder": 0,
                    "uv_index": 0
                },
                {   "time": "300", ...   },
                {   "time": "600", ...   },
                // 6 more items
            ]
        }
    }
}

What is actually happening?

The result that I am getting is no more including the forecast property

{
    "request": {
        "type": "City",
        "query": "New York, United States of America",
        "language": "en",
        "unit": "m"
    },
    "location": {
        "name": "New York",
        "country": "United States of America",
        "region": "New York",
        "lat": "40.714",
        "lon": "-74.006",
        "timezone_id": "America/New_York",
        "localtime": "2021-08-24 02:08",
        "localtime_epoch": 1629770880,
        "utc_offset": "-4.0"
    },
    "current": {
        "observation_time": "06:08 AM",
        "temperature": 23,
        "weather_code": 113,
        "weather_icons": [
            "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0008_clear_sky_night.png"
        ],
        "weather_descriptions": [
            "Clear"
        ],
        "wind_speed": 9,
        "wind_degree": 280,
        "wind_dir": "W",
        "pressure": 1012,
        "precip": 0,
        "humidity": 85,
        "cloudcover": 0,
        "feelslike": 25,
        "uv_index": 1,
        "visibility": 16,
        "is_day": "no"
    }
}

This used to work perfectly fine yesterday.

BhinbahadurUK commented 1 year ago

Good day

Thanks so much.Can you add me in over africe and open search from there.

Regards

On Tue, 04 Oct 2022, 00:47 Ameera aaliya, @.***> wrote:

Reproduction link

https://api.weatherstack.com/forecast?&query=New%20York&forecast_days=7&hourly=1 What is expected?

AS per the documentation, the result of this call should return an object like:

{ "request": { "type": "City", "query": "New York, United States of America", "language": "en", "unit": "m" }, "location": { "name": "New York", "country": "United States of America", "region": "New York", "lat": "40.714", "lon": "-74.006", "timezone_id": "America/New_York", "localtime": "2019-09-07 11:38", "localtime_epoch": 1567856280, "utc_offset": "-4.0" }, "current": { "observation_time": "03:38 PM", "temperature": 18, "weather_code": 113, "weather_icons": [ "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png" ], "weather_descriptions": [ "Sunny" ], "wind_speed": 0, "wind_degree": 345, "wind_dir": "NNW", "pressure": 1011, "precip": 0, "humidity": 58, "cloudcover": 0, "feelslike": 18, "uv_index": 5, "visibility": 16 }, "forecast": { "2019-09-07": { "date": "2019-09-07", "date_epoch": 1567814400, "astro": { "sunrise": "06:28 AM", "sunset": "07:19 PM", "moonrise": "03:33 PM", "moonset": "12:17 AM", "moon_phase": "First Quarter", "moon_illumination": 54 }, "mintemp": 17, "maxtemp": 25, "avgtemp": 21, "totalsnow": 0, "sunhour": 10.3, "uv_index": 5, "hourly": [ { "time": "0", "temperature": 18, "wind_speed": 28, "wind_degree": 15, "wind_dir": "NNE", "weather_code": 122, "weather_icons": [ "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0004_black_low_cloud.png" ], "weather_descriptions": [ "Overcast" ], "precip": 0, "humidity": 68, "visibility": 10, "pressure": 1008, "cloudcover": 75, "heatindex": 18, "dewpoint": 12, "windchill": 18, "windgust": 35, "feelslike": 18, "chanceofrain": 0, "chanceofremdry": 87, "chanceofwindy": 0, "chanceofovercast": 90, "chanceofsunshine": 15, "chanceoffrost": 0, "chanceofhightemp": 0, "chanceoffog": 0, "chanceofsnow": 0, "chanceofthunder": 0, "uv_index": 0 }, { "time": "300", ... }, { "time": "600", ... }, // 6 more items ] } } }

What is actually happening?

The result that I am getting is no more including the forecast property

{ "request": { "type": "City", "query": "New York, United States of America", "language": "en", "unit": "m" }, "location": { "name": "New York", "country": "United States of America", "region": "New York", "lat": "40.714", "lon": "-74.006", "timezone_id": "America/New_York", "localtime": "2021-08-24 02:08", "localtime_epoch": 1629770880, "utc_offset": "-4.0" }, "current": { "observation_time": "06:08 AM", "temperature": 23, "weather_code": 113, "weather_icons": [ "https://assets.weatherstack.com/images/wsymbols01_png_64/wsymbol_0008_clear_sky_night.png" ], "weather_descriptions": [ "Clear" ], "wind_speed": 9, "wind_degree": 280, "wind_dir": "W", "pressure": 1012, "precip": 0, "humidity": 85, "cloudcover": 0, "feelslike": 25, "uv_index": 1, "visibility": 16, "is_day": "no" } }

This used to work perfectly fine yesterday.

— Reply to this email directly, view it on GitHub https://github.com/apilayer/weatherstack/issues/15#issuecomment-1266153970, or unsubscribe https://github.com/notifications/unsubscribe-auth/AEXF3X26Y242JNZKKP6KGZ3WBNO7VANCNFSM5CWDLU7A . You are receiving this because you are subscribed to this thread.Message ID: @.***>

BhinbahadurUK commented 1 year ago

The new age 20 20 seventy nine

Sunday, 05 February 2023 18:54

Year of charcoal Inosate extract. Grey coal shiny gun metal silver. Alloys advance one ten Maliseun turns eight point four one. Medicines have base medol metholene turns yellow after to long kept example drip bottle yellow extract is neucross. Platinum grey was the earths view outside for best view or observations.

Cure to second earth finding. Solves to baseline medicines of chronic disorders rearrangement. Return of the sun as Gass eludes burns of films except main character holding skin. Defined gravity as oxyto one was next to advance after gravity comes of polarisation of the necleotide holding proton mass base matter as to such negio alters as increase after improper man advised negative drop on O² rise of CO² so chain reactor will shut as liar promised a million of gold. Always good to agree them agreement comes to be met ends fugly like yol.

Solar Nuclear pollution runs the earth as Ushen resides on program where earth eats acid building of storing it's residues as so forth.

Solar Nuclear Power Jets Turbine Capsules power cells Nuclear jet of the past has and eats power laying around.

Oxydron enters a new stage of beginning where air finds you easier. Base coal code coal Illuminated with glass manufacturers first for making globes as biodegrade take half the time any glass of any of that would be consumed by earth maturing a zero factor hereafter also bottles would densely represent none other but better glass but actually breaks half easier in ground not manufacture to use in .

Anyone grants me canned water or milk I'd be happy.( Happy face)

Coal regeneration

Base till success enters diamond era preventing extermination of human onso human being droid shall help so forth. In the end Linkin park sounds nice so forth. Nine times around a lifetime the world widders as earths climax of compansion enters a zero phase earth Busts a time warp to get ore ground better percentage but wider area like last burst area surface defacated till today still reboring same earthly substances. Shekolo Sains lead.

Area times one metagrophy Hypertensial Exporad Mitaf Mistaf Mactonnage break metre. Anaclog Aliso Mbetabrandisien Miclan

Fact: Alien life lets you live Also lets you see what you think your mind is seeing. Mind wiping is inevitable. Who knows who truely

Zorb attacked ship with expo of photographer exact side of earth other side the moon , opening closing flap thing , can hold you from speaking or acknowledging. You could be in front of one right now like really. Musk ackzounds us all greiflee.

There is a life path to success and so a life Path after your death till substance cannot be traced exact which opens in moon phases but also entry is null hereafter knocked of outer inner certain timed entry.

Portal verse tokes Ushen

A viral being is not afore to break earth rather understand further life sentences for knowing .

Its about to make a delivery. I'm not standing delivery MAN no.

Glass made molecules gathered will make portal entry open more and viewable though just glimpse yet never seen before as this is openings to . Electrified by my module makes the is the new phase of visors scanner lenses camera ray technology onso this plastic feel glass lenses changes what we see as this opens to see the reality outer in space as you see do not believe realms only open with portal ray missile entry sub chard fired into onto them slight side.

This now built in touch ray visor via sense mach finger touch works your keyboard to make symbols now writting we never thought possible CAN . Mirrors and dimensions are reawakened via touch analogue touch sense same for my television sets of match box size open onto same screen and place flat on radial. Registered and made invented by Ushen Kowlessar Bhinbahadur UKB.

Get Outlook for Androidhttps://aka.ms/AAb9ysg

BhinbahadurUK commented 1 year ago

Recipe:

Earth (full pot)

Ingredients:

Two grams space open time. One grain salt of the solstice across earth Jupiter shows but goes of Mars eight grains makes one salt crystal here earth.

Two ounces insemen - a details Sealine liquid that's found of Saturn side line Uranus side .

Litre water of Mars as mecury of that end turns Muti here pure clean water, as I asked meksen to drop a mecury ball off a thermometer by mistake broken oops yes same.

Eighty seven breaks of nuts found on that cashew isles in Mecca as same is in some planet makes here scents as overgrows out of love ( wondering still what is that o bams included - note notes to myself very hindred ) One ounce ground powder of earth moon ( moon balancing beam of exantsweirl every planet has one or two if seen mutt so not seen yet here 45 Shades of grey , When water enter the sterum pots of liquid machines making fuel onboard fueliskfamilleez water entering the fuel line with same built metaphon icler symberit or carburettor atomic molecule carburettor.

Ten drumsticks of another plane yet earth is next to it's dane.

I believe solemnly turkeys are from out of space look at Donald's head same line but don't know ancestors of another plane yet not heaven I means Donald's heavens what you catch a turkey meowing body make of a sheep Oi.

Basha baba funny this is all crap entry level is earth mixed of over comidiums making earth float Lavitate so on run rung and room by this day earths circums to nine volanic indland attacks fourty eight breaks in disaster as not forseen but never heard it thought of and nine one one makes the hits lists ouweishinsruff. Acting anolies reliant of on earth is Enemy attacks for baitered disaster as it's coming inevitable hence Putin feels it's over yet that cloud can be held and fought yes it's ours to fight with your app.

Right now 77 sectors broken in ninety one cracked me in eighty seven holds .

Question I need help and answer

? How can a dat or data frequency run on a sound line programming somewhere buts it's running binary and taking program and instruction how can this be possible. A reciever satellite is taking a recore code and if run perfect as focused or listen to being gets higher graded in mental health or more conscious to stuff around as data or of a brain sending communication to breach any but find the enemy of what's character run over that like binary transmitting their noise relays of after hours like distance of bar range un for seen.

Helowdoowieyeh

Method:

As the first grain is made in Orbital turns it in turn extracts matter force substance so forth as per ingredients. Spins absorbing releasing atomic molecules . Cook until well done ✅ as desired fried boiled or half done even burnt finish.

Serve warm as settles after cooling moderately. Serves 45 945 353 . 01 = Seventy eight point seven Trillion.

Get Outlook for Androidhttps://aka.ms/AAb9ysg


From: Usaman Khallid Bhinbahadur @.> Sent: Monday, February 6, 2023 1:02:26 PM To: U.S. Copyright Office @.>; Copyright Cipc @.>; @. @.>; @. @.>; @. @.>; Cipc Commissioner @.>; Cipc Law @.>; Cipc Chief @.>; @. @.>; @. @.>; Netcapital @.>; Submission Papers Theology @.>; @. @.>; @. @.>; apilayer/weatherstack @.>; @. @.>; @. @.>; Servicio de Ciudadanía e Inmigración de los Estados Unidos @.> Subject: The new age 20 20 seventy nine

The new age 20 20 seventy nine

Sunday, 05 February 2023 18:54

Year of charcoal Inosate extract. Grey coal shiny gun metal silver. Alloys advance one ten Maliseun turns eight point four one. Medicines have base medol metholene turns yellow after to long kept example drip bottle yellow extract is neucross. Platinum grey was the earths view outside for best view or observations.

Cure to second earth finding. Solves to baseline medicines of chronic disorders rearrangement. Return of the sun as Gass eludes burns of films except main character holding skin. Defined gravity as oxyto one was next to advance after gravity comes of polarisation of the necleotide holding proton mass base matter as to such negio alters as increase after improper man advised negative drop on O² rise of CO² so chain reactor will shut as liar promised a million of gold. Always good to agree them agreement comes to be met ends fugly like yol.

Solar Nuclear pollution runs the earth as Ushen resides on program where earth eats acid building of storing it's residues as so forth.

Solar Nuclear Power Jets Turbine Capsules power cells Nuclear jet of the past has and eats power laying around.

Oxydron enters a new stage of beginning where air finds you easier. Base coal code coal Illuminated with glass manufacturers first for making globes as biodegrade take half the time any glass of any of that would be consumed by earth maturing a zero factor hereafter also bottles would densely represent none other but better glass but actually breaks half easier in ground not manufacture to use in .

Anyone grants me canned water or milk I'd be happy.( Happy face)

Coal regeneration

Base till success enters diamond era preventing extermination of human onso human being droid shall help so forth. In the end Linkin park sounds nice so forth. Nine times around a lifetime the world widders as earths climax of compansion enters a zero phase earth Busts a time warp to get ore ground better percentage but wider area like last burst area surface defacated till today still reboring same earthly substances. Shekolo Sains lead.

Area times one metagrophy Hypertensial Exporad Mitaf Mistaf Mactonnage break metre. Anaclog Aliso Mbetabrandisien Miclan

Fact: Alien life lets you live Also lets you see what you think your mind is seeing. Mind wiping is inevitable. Who knows who truely

Zorb attacked ship with expo of photographer exact side of earth other side the moon , opening closing flap thing , can hold you from speaking or acknowledging. You could be in front of one right now like really. Musk ackzounds us all greiflee.

There is a life path to success and so a life Path after your death till substance cannot be traced exact which opens in moon phases but also entry is null hereafter knocked of outer inner certain timed entry.

Portal verse tokes Ushen

A viral being is not afore to break earth rather understand further life sentences for knowing .

Its about to make a delivery. I'm not standing delivery MAN no.

Glass made molecules gathered will make portal entry open more and viewable though just glimpse yet never seen before as this is openings to . Electrified by my module makes the is the new phase of visors scanner lenses camera ray technology onso this plastic feel glass lenses changes what we see as this opens to see the reality outer in space as you see do not believe realms only open with portal ray missile entry sub chard fired into onto them slight side.

This now built in touch ray visor via sense mach finger touch works your keyboard to make symbols now writting we never thought possible CAN . Mirrors and dimensions are reawakened via touch analogue touch sense same for my television sets of match box size open onto same screen and place flat on radial. Registered and made invented by Ushen Kowlessar Bhinbahadur UKB.

Get Outlook for Androidhttps://aka.ms/AAb9ysg