<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic fossil - solar - wind Triangle in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826544#M100756</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1736484620019.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71783i5DF67572ACEA6460/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1736484620019.png" alt="hogi_1-1736484620019.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It almost looks like art - but it is data !&lt;BR /&gt;from:&amp;nbsp;&lt;A href="https://energy-charts.info/" target="_blank" rel="nofollow noopener"&gt;&lt;SPAN&gt;Fraunhofer ISE:&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;solar / wind / fossil energy generation in Germany per bin of 15 mit to several hours *).&lt;/P&gt;&lt;P&gt;On the Y axis you see the fossil power generation, and on the X axis the split between wind (left) and solar(right).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Via &lt;STRONG&gt;right click - new formula column&lt;/STRONG&gt;&amp;nbsp;/ Date Time / Day of year&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1736697761892.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71862iB302AF57FDDF66F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1736697761892.png" alt="hogi_0-1736697761892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;one can&amp;nbsp;add some &lt;STRONG&gt;color -&lt;/STRONG&gt;&amp;nbsp;with a cyclic scheme like &lt;STRONG&gt;&lt;EM&gt;Hue.&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;Hue is not available by default, but it's easy to generate:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Color Theme(
	{"Hue", {"Continuous", "Categorical", "Chromatic"}, {{248, 10, 254}, {0,
	0, 255}, {0, 127, 255}, {0, 255, 255}, {127, 255, 127}, {255, 255, 0},
	{255, 127, 0}, {255, 0, 0}, {254, 5, 235}, Missing( {120, 120, 124} )}}
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And with some&amp;nbsp;&lt;STRONG&gt;transparency&lt;/STRONG&gt;&amp;nbsp;added, one can get a feeling for the density of the data points:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1736484559445.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71782iB9D2C3EB5B3DC73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1736484559445.png" alt="hogi_0-1736484559445.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The transparency is also applied to the legend, this makes it hard to read.&lt;/P&gt;&lt;P&gt;To fix the issue, just add another column as "color" and use it for the legend ... and hide the original one.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1736483578512.png" style="width: 71px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71775i038CFFDF52351C44/image-dimensions/71x169?v=v2" width="71" height="169" role="button" title="hogi_1-1736483578512.png" alt="hogi_1-1736483578512.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in total:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Transform Column( "Day of Year 2", Formula( Day Of Year( :date ) ) ),
	Transform Column( "Day of Year", Formula( Day Of Year( :date ) ) ),
	Transform Column( "Year", Nominal, Formula( Year( :date ) ) ),
	Transform Column(
		"fossile -&amp;gt;",
		Formula(
			Sum( :Braunkohle, :Steinkohle, :Öl, :Kohlegas, :Erdgas ) / :Last // Last = consumption
		)
	),
	Transform Column( "dummy", Formula( . ) ),
	Transform Column(
		"&amp;lt;- wind / solar -&amp;gt;",
		Formula( (:Solar - (:Wind Offshore + :Wind Onshore)) / :Last)
	),
	Variables(
		X( :"&amp;lt;- wind / solar -&amp;gt;"n ),
		X( :dummy, Position( 1 ) ),
		Y( :"fossile -&amp;gt;"n ),
		Wrap( :Year ),
		Color( :Day of Year ),
		Color( :Day of Year 2 )
	),
	Elements(
		Points( X( 1 ), Y, Legend( 1 ) ),
		Points( X( 2 ), Y, Legend( 2 ) )
	),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				1,
				Properties(
					0,
					{Transparency( 0.05 ),
					gradient(
						{Color Theme(
							{"Hue_3", {"Continuous", "Categorical",
							"Chromatic"}, {{248, 10, 254}, {0, 0, 255}, {0,
							127, 255}, {0, 255, 255}, {127, 255, 127}, {255,
							255, 0}, {255, 127, 0}, {255, 0, 0}, {254, 5, 235
							}, Missing( {120, 120, 124} )}}
						), Scale Values( [0 365] ), N Labels( 2 )}
					)},
					Item ID( "Day of Year", 1 )
				),
			), Legend Model(
				2,
				Properties(
					0,
					{gradient(
						{Color Theme(
							{"Hue", {"Continuous", "Categorical",
							"Chromatic"}, {{248, 10, 254}, {0, 0, 255}, {0,
							127, 255}, {0, 255, 255}, {127, 255, 127}, {255,
							255, 0}, {255, 127, 0}, {255, 0, 0}, {254, 5, 235
							}, Missing( {120, 120, 124} )}}
						), Scale Values( [0 365] ), N Labels( 2 ),
						Label Format( "Fixed Dec", 12, 0 )}
					)},
					Item ID( "Day of Year", 1 )
				)
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 12 Jan 2025 16:05:00 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-01-12T16:05:00Z</dc:date>
    <item>
      <title>fossil - solar - wind Triangle</title>
      <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826544#M100756</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1736484620019.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71783i5DF67572ACEA6460/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1736484620019.png" alt="hogi_1-1736484620019.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It almost looks like art - but it is data !&lt;BR /&gt;from:&amp;nbsp;&lt;A href="https://energy-charts.info/" target="_blank" rel="nofollow noopener"&gt;&lt;SPAN&gt;Fraunhofer ISE:&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;solar / wind / fossil energy generation in Germany per bin of 15 mit to several hours *).&lt;/P&gt;&lt;P&gt;On the Y axis you see the fossil power generation, and on the X axis the split between wind (left) and solar(right).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Via &lt;STRONG&gt;right click - new formula column&lt;/STRONG&gt;&amp;nbsp;/ Date Time / Day of year&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1736697761892.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71862iB302AF57FDDF66F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1736697761892.png" alt="hogi_0-1736697761892.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;one can&amp;nbsp;add some &lt;STRONG&gt;color -&lt;/STRONG&gt;&amp;nbsp;with a cyclic scheme like &lt;STRONG&gt;&lt;EM&gt;Hue.&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;Hue is not available by default, but it's easy to generate:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Color Theme(
	{"Hue", {"Continuous", "Categorical", "Chromatic"}, {{248, 10, 254}, {0,
	0, 255}, {0, 127, 255}, {0, 255, 255}, {127, 255, 127}, {255, 255, 0},
	{255, 127, 0}, {255, 0, 0}, {254, 5, 235}, Missing( {120, 120, 124} )}}
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And with some&amp;nbsp;&lt;STRONG&gt;transparency&lt;/STRONG&gt;&amp;nbsp;added, one can get a feeling for the density of the data points:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1736484559445.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71782iB9D2C3EB5B3DC73E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1736484559445.png" alt="hogi_0-1736484559445.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The transparency is also applied to the legend, this makes it hard to read.&lt;/P&gt;&lt;P&gt;To fix the issue, just add another column as "color" and use it for the legend ... and hide the original one.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1736483578512.png" style="width: 71px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71775i038CFFDF52351C44/image-dimensions/71x169?v=v2" width="71" height="169" role="button" title="hogi_1-1736483578512.png" alt="hogi_1-1736483578512.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in total:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Transform Column( "Day of Year 2", Formula( Day Of Year( :date ) ) ),
	Transform Column( "Day of Year", Formula( Day Of Year( :date ) ) ),
	Transform Column( "Year", Nominal, Formula( Year( :date ) ) ),
	Transform Column(
		"fossile -&amp;gt;",
		Formula(
			Sum( :Braunkohle, :Steinkohle, :Öl, :Kohlegas, :Erdgas ) / :Last // Last = consumption
		)
	),
	Transform Column( "dummy", Formula( . ) ),
	Transform Column(
		"&amp;lt;- wind / solar -&amp;gt;",
		Formula( (:Solar - (:Wind Offshore + :Wind Onshore)) / :Last)
	),
	Variables(
		X( :"&amp;lt;- wind / solar -&amp;gt;"n ),
		X( :dummy, Position( 1 ) ),
		Y( :"fossile -&amp;gt;"n ),
		Wrap( :Year ),
		Color( :Day of Year ),
		Color( :Day of Year 2 )
	),
	Elements(
		Points( X( 1 ), Y, Legend( 1 ) ),
		Points( X( 2 ), Y, Legend( 2 ) )
	),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				1,
				Properties(
					0,
					{Transparency( 0.05 ),
					gradient(
						{Color Theme(
							{"Hue_3", {"Continuous", "Categorical",
							"Chromatic"}, {{248, 10, 254}, {0, 0, 255}, {0,
							127, 255}, {0, 255, 255}, {127, 255, 127}, {255,
							255, 0}, {255, 127, 0}, {255, 0, 0}, {254, 5, 235
							}, Missing( {120, 120, 124} )}}
						), Scale Values( [0 365] ), N Labels( 2 )}
					)},
					Item ID( "Day of Year", 1 )
				),
			), Legend Model(
				2,
				Properties(
					0,
					{gradient(
						{Color Theme(
							{"Hue", {"Continuous", "Categorical",
							"Chromatic"}, {{248, 10, 254}, {0, 0, 255}, {0,
							127, 255}, {0, 255, 255}, {127, 255, 127}, {255,
							255, 0}, {255, 127, 0}, {255, 0, 0}, {254, 5, 235
							}, Missing( {120, 120, 124} )}}
						), Scale Values( [0 365] ), N Labels( 2 ),
						Label Format( "Fixed Dec", 12, 0 )}
					)},
					Item ID( "Day of Year", 1 )
				)
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 16:05:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826544#M100756</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-12T16:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: fossile - solar - wind</title>
      <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826581#M100766</link>
      <description>&lt;P&gt;let's add some triangles - now it looks very similar to a Ternary plot.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_3-1736504442845.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71792i19461C4DD29A3A62/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_3-1736504442845.png" alt="hogi_3-1736504442845.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The only difference:&lt;/P&gt;&lt;P&gt;in a ternary plot, the 3 parts add up to 1.&lt;/P&gt;&lt;P&gt;Here - as we use the total power &lt;U&gt;consumption&lt;/U&gt; as a reference, points can be outside of the triangle:&lt;BR /&gt;additional energy is exported.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 20:41:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826581#M100766</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-10T20:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: fossile - solar - wind</title>
      <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826792#M100794</link>
      <description>&lt;P&gt;As mentioned in the original post, by adding transparency, one&amp;nbsp;gets an impression for the "densities":&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1736539196122.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71831i25559F598E8E2CD8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1736539196122.png" alt="hogi_1-1736539196122.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, the time bins of the input data have different length. So, one has to apply some fancy correction.&lt;BR /&gt;... or at least: some weighting.&lt;BR /&gt;Weighting by &lt;STRONG&gt;Transparency&lt;/STRONG&gt; feels like THE natural weight:&lt;BR /&gt;data points with lower weight get transparent - i.e. less visible -&amp;gt; lower weight.&lt;BR /&gt;Unfortunately, weighting by TRansparency is not et avaialble in JMP&amp;nbsp; - if you are interested, please vote:&lt;BR /&gt;&lt;LI-MESSAGE title="Graph Builder:Transparency Dropzone" uid="813578" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-Transparency-Dropzone/m-p/813578#U813578" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a workaround, one can split the continuous weight scale into bins and apply the transparency setting manually:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_4-1736540397678.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71837i531D45C62DB73536/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_4-1736540397678.png" alt="hogi_4-1736540397678.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A disadvantage of this workaround:&lt;BR /&gt;The "Color" Dropzone is used to apply the &lt;U&gt;Transparency&lt;/U&gt; (&amp;nbsp;&lt;LI-MESSAGE title="Why is this DropZone called &amp;amp;quot;Color&amp;amp;quot;" uid="783786" url="https://community.jmp.com/t5/Discussions/Why-is-this-DropZone-called-quot-Color-quot/m-p/783786#U783786" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;)&amp;nbsp;&lt;BR /&gt;Therefore, the color Dropzone&amp;nbsp; is not available anymore for &lt;U&gt;color&lt;/U&gt;&amp;nbsp;: (&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 16:09:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826792#M100794</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-12T16:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: fossile - solar - wind</title>
      <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826794#M100795</link>
      <description>&lt;P&gt;If you are not interested in the "seasonal" part, then you can use Color to indicate density.&lt;BR /&gt;This can be done via&amp;nbsp;&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Histogram&lt;/FONT&gt; +&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Frequency&lt;/FONT&gt;&lt;BR /&gt;Make sure that you use rounded values for the &lt;FONT face="courier new,courier"&gt;frequency&lt;/FONT&gt;&amp;nbsp;- otherwise they get replaced by &lt;FONT face="courier new,courier"&gt;1&lt;/FONT&gt;s.&lt;/P&gt;&lt;P&gt;(&lt;LI-MESSAGE title="Freq and Weight: better documentation" uid="684843" url="https://community.jmp.com/t5/JMP-Wish-List/Freq-and-Weight-better-documentation/m-p/684843#U684843" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_5-1736540970509.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71838iEBF5F3F573851FAB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_5-1736540970509.png" alt="hogi_5-1736540970509.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 16:10:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826794#M100795</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-12T16:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: fossile - solar - wind</title>
      <link>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826853#M100812</link>
      <description>&lt;P&gt;Next step:&amp;nbsp; &lt;STRONG&gt;Intraday animation&lt;BR /&gt;&lt;BR /&gt;2 weeks July 2024:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6366957547112w552h258r557" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6366957547112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6366957547112w552h258r557');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6366957547112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jan 2025 16:11:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/fossil-solar-wind-Triangle/m-p/826853#M100812</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-01-12T16:11:56Z</dc:date>
    </item>
  </channel>
</rss>

