Will these models include a "radar forecast"? As shown in the HRRR picture?
Best posts made by arjannv
-
RE: Which model should Windy implement next? Please vote.
-
RE: How to set-up your Windy Stormchasing Station
@ivo Ah, I understand. If there is a need for another tester, or when the final sensors are ready, please let me know :)
-
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. -
RE: Vote for the next feature on Windy!
Option 1 please! Weather Radar for Europe:)
-
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-blendingAs the dutch radar image is also being overlapped by multiple other radar sources, the image isn't always that clear.
Thanks in advance!
Latest posts made by arjannv
-
RE: How to set-up your Windy Stormchasing Station
@ivo Ah, I understand. If there is a need for another tester, or when the final sensors are ready, please let me know :)
-
RE: How to set-up your Windy Stormchasing Station
Just found out about the Windy Stormchasing Station! Could I already apply for a sensor?
As I've lost all hope participating in the other blitz network.. :)
My location: Somewhere north-west, along the coast in The Netherlands. -
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 -
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. -
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-blendingAs the dutch radar image is also being overlapped by multiple other radar sources, the image isn't always that clear.
Thanks in advance! -
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.
-
RE: Help us translate Windy
Dutch is 100% as well. But, products.json contains non-dutch translations. Is this imported by mistake?
-
RE: How to change color schema of different weather layer?
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() .
-
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;
}