TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

A visualization of global weather conditions, forecast by supercomputers

153 pointsby moonlighterover 11 years ago

13 comments

IvyMikeover 11 years ago
Time to whip out the hairy ball theorem: <a href="https://en.wikipedia.org/wiki/Hairy_ball_theorem" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Hairy_ball_theorem</a><p>Yes I heard what I just said.
评论 #6925330 未加载
adolgertover 11 years ago
The javascript shows they are thinking about this as particle traces of wind velocities. In visualization, the technique is called Line Integral Convolution (LIC). Each line follows the direction of the wind vector, and the overall brightness is the sum of the magnitude of the winds under the line. This particular variant just uses the wind speed at one point under the line. LIC won&#x27;t accidentally miss field singularities like vector-arrow representations, and there are variants that provide smooth animations.<p>It&#x27;s great that we&#x27;ve advanced from needing VTK to being able to do a visualization like this as a live movie, translating GRIB files to JSON.
moonlighterover 11 years ago
Also interesting: <a href="http://earth.nullschool.net/about.html" rel="nofollow">http:&#x2F;&#x2F;earth.nullschool.net&#x2F;about.html</a>
评论 #6925012 未加载
Scaevolusover 11 years ago
Beautiful!<p>If you turn the globe upside down, the controls for rotating it are backwards.<p>Some way to pan&#x2F;zoom without pausing the visualization would be nice, but probably very difficult without moving to webgl-based rendering.
mayhaffsover 11 years ago
Beautiful design. This would be awesome to have hanging on a wall.
评论 #6927226 未加载
aarenover 11 years ago
Can it display different data by playing with the url?<p>e.g. I&#x27;m looking at<p><pre><code> http:&#x2F;&#x2F;earth.nullschool.net&#x2F;#current&#x2F;wind&#x2F;isobaric&#x2F;1000hPa&#x2F;orthographic=-11.40,53.26,489 </code></pre> The only thing I can get to change is the lon, lat, zoom at the end. Are there more things I can change?
LancerSykeraover 11 years ago
At 10hPa, it&#x27;s windy as dicks around the arctic circle. The antarctic, however, is relatively calm. Is that a seasonal thing? Will it be the opposite in June?
评论 #6927094 未加载
jherikoover 11 years ago
looks broken here if i rotate it until it redraws which is a shame...<p>i do find this interesting coming from a native rendering background. the idea of converting data from one, fairly inefficient format (FORTRAN friendly from the look) to a spectacularly less efficient format still is a bit mind boggling without appreciation for the web stack (JSON is not for run-time in my world - its for &#x27;tools&#x27; or &#x27;compile&#x27; time).<p>the rendering is also quite underwhelming on a desktop PC - especially that it cuts out whilst rotating. there is some obvious stuff here that can be cached on inspection of the comments on github...<p>for instance, since there is a lot of data processing already, how about &#x27;unprojecting&#x27; the data to remove the extra interpolation overhead from having to apply a transform and its inverse? Just because they have chosen to project their data onto a sphere doesn&#x27;t mean you have to follow suit... its probably a useful format for meteorologists or cartographers but its not suited for rendering at all.<p>of course doing that will have similar results to a low pass filter unless you use a much higher density grid than the source (since you want a regular grid in your result and have irregular data points) - but visually that is very acceptable as a compromise.<p>the obvious guess suggestion is webgl and a 3d canvas, and dropping any fancy svg or other elements if they need to be visually sycned up with precision and rendering all of it yourself in a single consistent way. in the browser world its often a bad idea to rely on the implementation of anything if you need guarantees of quality - there is a lot of variation and a lot of bugs that have persisted for years on end...<p>i&#x27;d also suggest partitioning the data once its in 3d - a kd-tree or regular octree is quite easy to implement and understand and perfectly suited for this imo
mehwootover 11 years ago
Is this current weather conditions?
评论 #6926677 未加载
athstover 11 years ago
This is really cool, but it is clearly heavily influenced in design by Viegas and Wattenberg&#x27;s Wind Map: <a href="http://hint.fm/wind/" rel="nofollow">http:&#x2F;&#x2F;hint.fm&#x2F;wind&#x2F;</a><p>The creator should really acknowledge their work...
评论 #6925469 未加载
评论 #6925464 未加载
评论 #6925459 未加载
Oculusover 11 years ago
Wicked cool visualization!
nagarchover 11 years ago
Amazing
almosnowover 11 years ago
Honest question.<p>Why does weather behave different over oceans when compared to land?
评论 #6925530 未加载
评论 #6925069 未加载
评论 #6925059 未加载
评论 #6925095 未加载