It's fixed now, thanks.

Posts made by jakubvrana
-
temp-surface disappeared from ECMWF-HRES
I get the forecast data by
getMeteogramForecastData
. There are many keys likedewpoint-150h
and there also used to betemp-surface
. It now disappeared. Please add it back. -
RE: List of Finished Windy Plugins (v42+)
I've updated the Flymet plugin and published. Please review and approve.
-
RE: Plugins not compatible
@Suty Is this at least automatic when I publish a new version? Or do I need to always notify you?
-
RE: Plugins not compatible
@Suty Does every new version need to be approved?
-
RE: Plugins not compatible
@Suty I've published the plugin: https://github.com/vrana/windy-plugin-pg-mapa/actions/runs/8658990874
How long does it take to appear in Windy?
-
RE: Plugins not compatible
@Suty I've updated the plugin to the new system. It works in the dev mode. It still says it's not compatible. What do I need to do to re-enable it in Windy plugins list?
-
Wrong link
There's a wrong link at https://docs.windy-plugins.com/getting-started/.
It leads to https://github.com/windycom/windy-plugin-teplate.git (M is missing in template).
-
Plugins not compatible
Almost all the plugins now say “not compatible”. What should we do to make it compatible? Is there some announcement?
-
RE: Not working Plugin!
@jakubvrana, it now lives in
@windy/fetch
asgetPointForecastData
.Before doing any API change, can you scan the plugins if they use the old API and either send pull requests to fix them or at least inform us? It's really not pleasant if my plugin keeps breaking because of these changes.
-
RE: Not working Plugin!
@Ondřej-Šutera What's the replacement for
@windy/urls
? I needgetMeteogramForecast
andgetPointForecast
. I'm getting this error:Error: DI error: Module urls not defined. Required by: @plugins/windy-plugin-pg-mapa
-
RE: t.CharAt is not a function
@marekd It doesn't work.
W.broadcast.fire("rqstOpen", "detail", {"lat":48.44783,"lon":19.98392,"display":"wind"});
This still opens the basic forecast, not the wind forecast.
Can you add back the option to display different kinds of forecast? It's very useful to have this quickly available.
-
RE: t.CharAt is not a function
@Ondřej-Šutera There's one more problem. I'm displaying the wind forecast with this code:
W.store.set("detailDisplay", "wind"); W.broadcast.fire("rqstOpen", "detail", "...");
This doesn't work anymore because
store
doesn't havedetailDisplay
anymore. How can I display the wind (or meteogram) forecast now? -
RE: t.CharAt is not a function
@Ondřej-Šutera Thanks, now it works. It's the same for
getMeteogramForecast
. -
t.CharAt is not a function
When calling
getPointForecast
, I'm getting this error:Uncaught (in promise) TypeError: t.charAt is not a function at K (index.js:1:9086) at tn (index.js:1:38821) at an (index.js:1:39661) at y (windy-plugin-pg-mapa:1:1406) at i. (windy-plugin-pg-mapa:1:777) at i.fire (leaflet140_patched_tileLayer.v17.js:5:5090) at i.cb (windy-plugin-pg-mapa:1:1324) at i.value (index.js:1:269203) at i.value (index.js:1:267558)
The error is visible at https://www.windy.com/plugins/windy-plugin-pg-mapa?iconEu,48.384,20.016,9 when you click any takeoff.
Please help.
-
RE: e.dependencies.forEach is not a function
@vicb Thanks. I've updated my plugin. Do you know how can I now close the left panel with the plugin. It used to be
this.close()
butthis
is not available anymore.https://github.com/vrana/windy-plugin-flymet/blob/08620d2e/src/plugin.js#L69
-
e.dependencies.forEach is not a function
I'm getting this error when trying to load any plugin:
Uncaught (in promise) TypeError: e.dependencies.forEach is not a function at yt (index.js:1:31140) at bt (index.js:1:31731) at r.value (index.js:1:257953) at r (index.js:1:163974) e = { "name": "@plugins/windy-plugin-pg-mapa", "dependencies": "", "callback": "", "wasLoaded": false }
With some internal plugins, dependencies is an array.
Where should I define the dependencies? However, it seems like an error in Windy itself.
-
RE: No temp-surface in airData
@korina @rittels, thanks for the explanation. The “issue” was with the newly available
modelElevation
. My plugin expected that there will be alsotemp-surface
if there'smodelElevation
. It's great thatmodelElevation
is now available for the other models. -
No temp-surface in airData
In data returned from
windyUrls.getMeteogramForecast
, there used to betemp-surface
. Now it disappeared for all models but ECMWF. Can you please bring it back?