Thanks, but I prefer this https://www.windyty.com/
The interface on windyty.com is better. It does not have the problem of filling up your browser's history with every move you make. I would like to be able to see the color scale key with out also having to open the full control panel.
A global map of wind, weather, and ocean conditions
31–40 of 51 posts
Re: A global map of wind, weather, and ocean conditions
#32That's really cool, but does it really have to reload data on every viewport move/change? I use somewhat similar app for android made by Croatian Ministry of Maritime Affairs, Transport and Infrastructure https://play.google.com/store/apps/details?id=hr.mppi.nis&ah... There's also iOS version https://itunes.apple.com/us/app/nautical-info-service-croati... Really handy when you're out there.
And yes, this is pretty necessary (at least it's quite hard to work around). To maintain the same view during viewport movement, it would have to keep track of all the particle trails in lat/long space and re-project them all to the new view. But this is implemented in canvas, so the trails (ie. particle histories) are likely not stored in their entirety - more likely, the system keeps track of only the particle's current position, and the trails are accomplished by drawing new line segments over the old on each frame. Yes, it would be technically possible to keep track of each particle's full history, and to re-project them all during interaction, but it would be pretty slow.
(I didn't make this, but I've written a very similar particle system in canvas and ran into similar issues)
Re: A global map of wind, weather, and ocean conditions
#33Re: A global map of wind, weather, and ocean conditions
#34Re: A global map of wind, weather, and ocean conditions
#35Re: A global map of wind, weather, and ocean conditions
#36Earlier quoted context omitted.
The interface on windyty.com is better. It does not have the problem of filling up your browser's history with every move you make. I would like to be able to see the color scale key with out also having to open the full control panel.
Every new view should get a URL. That makes every view linkable. People who do not do this are actually violating the spirit of the HTML/URL specs. The fact that you see your browser history as polluted is an implementation detail that could be rectified by simply collapsing all consecutive URL's from the same domain over N url's into a hierarchical dropdown.
I say "sort of" because everyone has their own idea about which things should be pushed vs. replaced. One person's "history pollution" is another's useful tool. But in this case it seems pretty clear that simply moving the map shouldn't push to history.
Re: A global map of wind, weather, and ocean conditions
#37Re: A global map of wind, weather, and ocean conditions
#38Thanks, but I prefer this https://www.windyty.com/
Re: A global map of wind, weather, and ocean conditions
#39Way to go Cambec!