Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. asjustis
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 7
    • Best 0
    • Controversial 0
    • Groups 0

    asjustis

    @asjustis

    0
    Reputation
    1
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    asjustis Unfollow Follow

    Latest posts made by asjustis

    • Windy API redraw happens every 3 hours

      Hi,

      We used the windy API using the PRO key (via subscription) for a while now, and recently it started redrawing data only every 3 hours, instead of hourly. Did anything change from Windy tools?

      We a calling W.store.set("timestamp", animDate.getTime()); to set timestamps for each hour and then redraw our labels when
      broadcast.on("redrawFinished", (params) => {...} event is triggered. Seems this even stopped triggering now hourly, and triggers every 3 hours instead.

      Any ideas what could have caused it?

      Thanks,
      Justinas

      posted in Windy API v4
      A
      asjustis
    • RE: API beta test

      @marekd said in API beta test:

      ?beta=36

      Hi @marekd , thanks for tagging us. Happy to see the release process improving to avoid issues in production!

      With the beta version so far we noticed only the pressure overlay having different colors.

      Before:
      https://drive.google.com/file/d/1v9vivS_GGamAz_ftVlekUth95O5EwXkb/preview

      In beta:
      https://drive.google.com/file/d/1y1I5_Y29pniE5tFZsEMkf4fXTpIs43g8/preview

      P.S. btw, your image uploader is broken at least with Chrome, could not upload the images here directly :)

      Cheers,
      Justinas

      posted in Windy API v4
      A
      asjustis
    • RE: Have you changed the API code

      @korina Thanks for getting in touch! I just sent you the info through PM.

      posted in Windy API v4
      A
      asjustis
    • RE: Have you changed the API code

      +1. I am also experiencing this issue, running store.set("overlay", type); inside windyInit() does not work since yesterday. (type is either 'clouds', 'temp', etc etc, all of them displays the same thing).

      Is it possible to get an estimate on a fix? We use it to capture weather data daily, and it's important to understand if we can expect the fix today or later.

      Cheers,
      Justinas

      posted in Windy API v4
      A
      asjustis
    • Moisture Anomaly layer availability

      Hi guys,

      I want to be able to display Moisture Anomaly layer through API, is that possible? 'awd' code is not on the store.getAllowed() list, and not sure whether it's just a data model selection issue?

      We use Pro license.

      This is the layer I'd like to access:
      https://www.windy.com/-Moisture-anomaly-awd_0_40?awd_0_40,54.674,25.313,5

      It is also described here: https://community.windy.com/topic/3361/description-of-weather-overlays

      Thanks,
      Justinas

      posted in Windy API v4
      A
      asjustis
    • RE: Bug when setting fractional zoom (zoomSnap)

      @asjustis Additionally, I found that at least for labels, the issue is calculating the transform position for the label div. As in the screenshot, tile seems to perfectly positioned, and just the label position is somewhere far far away in the galaxy :))

      Any chance for a fix or a workaround?

      We were about to grab the pro license and launch our project, but bumped into this issue which is quite critical for us.

      Thanks,
      Justinas!

      Screenshot 2022-06-07 at 09.48.51.png

      posted in Windy API v4
      A
      asjustis
    • Bug when setting fractional zoom (zoomSnap)

      Hi guys,

      Just ran into an issue while trying to set a fractional zoom value on Windy map.

      Leaflet by default snaps zoom levels to an integer value, and their documentation says a solution for that is to set zoomSnap value to other than 1 (i.e. 0.1 means we can use 8.1, 8.2, 8.3, and so on). Well, that works for zooming.

      However, while in these fractional zoom values, Windy labels are just gone. They are only visible only when zoom value is equal to an integer.

      windyInit(config.windyOptions, windyAPI => {
      
          const { map, colors, broadcast, store, picker, utils } = windyAPI;
      
          map.options.zoomSnap = 0.1;
          map.setZoom(8.4)
      }
      
      posted in Windy API v4
      A
      asjustis