D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ssmaroju
Full window
Github gist
Wind Speed Probability of Exceedance
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <title>Radar chart</title> <script src="https://d3js.org/d3.v3.min.js"></script> <style> body { overflow: hidden; margin: 20px 120px 60px 100px; font-size: 14px; font-family: "Helvetica Neue", Helvetica; } #chart { position: relative; /*absolute;*/ top: 50px; left: 100px; } </style> </head> <body> <h2>Wind Probability of Exceedance</h2> <p>This plot shows the Wind data at Claire Ridge covering the last 10-20 years. Maximum velocity from the CFD simulations were carried out at this location for two scenarios. Those carried out at a reference speed (10 m above sea level) of 8.4 m/s and 16.6 m/s.</p> <p>Calculation of the exceedance speed, i.e. reference speed at 10 m above sea level results in greater than 5 m/s, 10 m/s etc at the location were computed. Finally the % of time the exceedance speed is exceeded is computed and presented in the radar chart.</p> <div id="body"> <div id="chart"></div> </div> <script src="RadarChart_dyn.js"></script> <script type="text/javascript" src="script_dyn.js"></script> </body> </html>
Modified
http://d3js.org/d3.v3.min.js
to a secure url
https://d3js.org/d3.v3.min.js