Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. arjannv
    A
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 19
    • Groups 4

    arjannv

    @arjannv

    10
    Reputation
    389
    Profile views
    19
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    arjannv Unfollow Follow
    API4 Early Tester API developers Drone Pilot Astronomer

    Best posts made by arjannv

    • RE: Which model should Windy implement next? Please vote.

      Will these models include a "radar forecast"? As shown in the HRRR picture?

      posted in Your Feedback and Suggestions
      A
      arjannv
    • RE: Vote for the next feature on Windy!

      Option 1 please! Weather Radar for Europe:)

      posted in General Discussion
      A
      arjannv
    • RE: Zoom iOS 13

      I had this problem as wel, but am now on the iOS 13.1 beta and can't reproduce it anymore.
      I think the problem started every time when you zoom or pan on the map and 1 finger goes over the edge of the screen. From that point, it always behaved as there was 1 touch input from that edge of the screen + another input from me when I wanted to zoom or pan.
      Result was very strange zoom behavior.
      This was only in the app, in Safari, it behaved as intended.

      posted in Replicable BUGs
      A
      arjannv
    • RE: Radar data from Estonia periodically off-scale

      Sorry to hijack this thread..
      Could you also look into this radar question? https://community.windy.com/topic/8642/radar-blending

      As the dutch radar image is also being overlapped by multiple other radar sources, the image isn't always that clear.
      Thanks in advance!

      posted in Replicable BUGs
      A
      arjannv

    Latest posts made by arjannv

    • RE: No data radar for part of Netherlands

      Any news on this data outage?
      Unfortunately, there is still no radar for a big part of The Netherlands.

      It seems that the radars are still functional:
      https://www.knmi.nl/nederland-nu/weer/actueel-weer/neerslagradar

      posted in Bug Reports
      A
      arjannv
    • RE: Zoom iOS 13

      I had this problem as wel, but am now on the iOS 13.1 beta and can't reproduce it anymore.
      I think the problem started every time when you zoom or pan on the map and 1 finger goes over the edge of the screen. From that point, it always behaved as there was 1 touch input from that edge of the screen + another input from me when I wanted to zoom or pan.
      Result was very strange zoom behavior.
      This was only in the app, in Safari, it behaved as intended.

      posted in Replicable BUGs
      A
      arjannv
    • RE: Radar data from Estonia periodically off-scale

      Sorry to hijack this thread..
      Could you also look into this radar question? https://community.windy.com/topic/8642/radar-blending

      As the dutch radar image is also being overlapped by multiple other radar sources, the image isn't always that clear.
      Thanks in advance!

      posted in Replicable BUGs
      A
      arjannv
    • RE: Radar blending

      Bump! :)

      Any thoughts on this?

      posted in Your Feedback and Suggestions
      A
      arjannv
    • Radar blending

      During recent thunderstorms we had in The Netherlands the Windy Radar overlay was very usefull! Good to see the lightning happening and check the location on the map.

      However, as The Netherlands isn't that big, sometimes the radar overlay is a bit polluted due too the radar image of our neighbors. Would it be an idea to give priority to the radar images with the shortest distance or highest refresh rate?

      Please find below an example of this.

      posted in Your Feedback and Suggestions
      A
      arjannv
    • RE: Help us translate Windy

      Dutch is 100% as well. But, products.json contains non-dutch translations. Is this imported by mistake?

      posted in Windy Translation & Localization
      A
      arjannv
    • RE: How to change color schema of different weather layer?

      @saaneuvos

      Pass the color values in the function below.
      W.colors.temp.changeColor( [ [xxx, [xxx, xxx, xxx, xxx]], [yyy, [yyy, yyy, yyy, yyy]] ] ); (for temperature)

      You can place the function inside windyInit() .

      posted in Windy API v4
      A
      arjannv
    • RE: Two instances of the map on a page

      @kostis90
      I do this by resizing the DIV of Windy.
      (Toggle class between contentbg and map-large)

      JS:
      var mapexpandbool = 0;
      var mapdivmenu = document.getElementById("weather-map");
      var mapdivmenutext = document.getElementById("weather-map+-");
      var mapframe = document.getElementById("weather-map");
      function weathermapexpand() {
      if (mapexpandbool === 0) {
      mapdivmenu.className = 'map-large';
      mapdivmenutext.innerHTML = '-';
      mapexpandbool = 1;
      } else {
      mapframe.className = 'contentbg';
      mapdivmenutext.innerHTML = '+';
      mapexpandbool = 0;
      }
      }

      CSS:
      .contentbg {
      width: calc(100% - 10px - 2px);
      border-width: 1px;
      border-color: rgba(255, 255, 255, 0.5);
      border-style: solid;
      background-color: rgba(0, 0, 0, 0.15);
      opacity: 1;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      display:inline-block;
      padding: 5px;
      margin-bottom: 15px;
      transition: .5s linear;
      -ms-transition: .5s linear;
      cursor: default;
      }
      .map-large {
      width: calc(90vw - 12px) !important;
      height: calc(90vh - 12px) !important;
      top: 0vh !important;
      display: block;
      position: absolute;
      z-index: 10;
      transition: .5s linear;
      -ms-transition: .5s linear;
      border-width: 1px;
      border-color: rgba(255, 255, 255, 0.5);
      border-style: solid;
      background-color: rgba(0, 0, 0, 1);
      padding: 5px;
      }

      posted in Windy API v4
      A
      arjannv
    • RE: Which model should Windy implement next? Please vote.

      Will these models include a "radar forecast"? As shown in the HRRR picture?

      posted in Your Feedback and Suggestions
      A
      arjannv
    • RE: How to: Different Layer?

      Seems that Wind Gusts is removed from API v4..
      https://community.windy.com/topic/6731/windy-api-change-of-conditions/

      posted in Windy API v4
      A
      arjannv