'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Helene (moon)

Helene (/ˈhɛln/ HEL-ə-nee;Greek: Ἑλένη) is a moon of Saturn. It was discovered by Pierre Laques and Jean Lecacheux in 1980 from ground-based observations at Pic du Midi Observatory, and was designated S/1980 S 6. In 1988 it was officially named after Helen of Troy, who was the granddaughter of Cronus (Saturn) in Greek mythology. Helene is also designated Saturn XII (12), which it was given in 1982, and Dione B, because it is co-orbital with Dione and located in its leading Lagrangian point (L4). It is one of four known trojan moons.

Exploration

Helene was initially observed from Earth in 1980, and Voyager flybys of Saturn in the early 1980s allowed much closer views. The Cassini–Huygens mission, which went into orbit around Saturn in 2004, provided still better views, and allowed more in-depth analysis of Helene, including views of the surface under different lighting conditions. Some of the closest images of Helene to date are from the Cassini spacecraft's 1800 km flyby on March 3, 2010, and another very successful imaging sequence occurred in June 2011. There have been many other approaches over the course of the Cassini mission, and future flybys may yield additional data.

Helene (name)

Helene (French: Hélène) is a female given name, a variant of Helen, using the French spelling. Helen is ultimately from Greek Ἑλένη.

As with other variants of Helen, Helene's saint's day is that of St. Helen.

People with the given name Helene

  • Helen of Anjou (1236-1314),was the queen consort of the Serbian Kingdom. Her husband was Stephen Uroš I and her children kings Dragutin and Milutin
  • Helene Mayer, German and American Olympic champion foil fencer
  • Hélène Conway-Mouret (born 1960), French politician.
  • Hélène Pastor (1937-2014), heiress and businesswoman from Monaco.
  • Helene Schjerfbeck, artist
  • Helene Speight, finalist in The Apprentice (UK Series Four)
  • Helene Holman, artist in the dramatic arts, and musician
  • People with the middle name Helene

  • Charlotte Helene Orléans, fictional sorceress
  • Hélène (song)

    "Hélène" is a 1989 pop song recorded by the Canadian singer Roch Voisine. It was the first single from his first studio album Hélène, and was released in November 1989. This song allowed the singer to launch his career and achieved great success in France.

    Song information

    The song was recorded at the Intercession studio. The guitars are played by Carl Katz, and the keyboards by Luc Gilbert.

    The cover for the CD maxi used the same photograph as that of the album Hélène : Roch Voisine's face with a black background. The song is mainly in French-language, but contains a line in English as follows: "Hélène things you do / Make me crazy about you".

    The music video features the singer and an air hostess who are in love, but who are forced to separate because of professional reasons. She may be French because when, in the video, she writes her name on a mirror with her lipstick, she does end it with an 'e' ('Helene'), as on the single cover. The model who plays the role of Hélène is Ariane Cordeau.

    Hélène (album)

    Hélène is a 1989 album by Canadian singer Roch Voisine. The title track "Hélène" is his best sold single ever, reaching number one for nine weeks on the French Singles Chart. Other successful singles from the album include "Pourtant" (#3) and "Avant de partir" (#7), released in 1990 summer.

    Two songs were both written and composed by the singer himself. Marc Voisine, his brother, participated in the writing of the last track. The recording and mixing were made at the Victor studio, except for the song "Hélène" (at Intercession studio).

    The album debuted at #14 on 3 December 1989 on the SNEP Albums Chart and had a peak at number one for two weeks almost eleven months after. It totaled 40 weeks in the top ten and 113 weeks in the top 50. In 1991, the album achieved Diamond status for over one million copies sold. In Norway, the album entered the albums chart on February 1990 and stayed for six weeks in the top 20, with a peak at number nine.

    Track listing

  • "Hélène" (Voisine, Lessard / Voisine) — 3:42
  • Moon (visual novel)

    Moon (styled as Moon.) is a Japanese adult visual novel developed by Tactics, a brand of Nexton, released on November 21, 1997 playable on Windows PCs. The game was described by the development team as a "Reaching the Heart AVG" (心に届くAVG Kokoro ni Todoku AVG). The story follows the protagonist Ikumi Amasawa, a girl who joins an organization called Fargo in the hopes of discovering why and how her mother died, who was a member of the same group. The gameplay in Moon follows a branching plot line which offers pre-determined scenarios with courses of interaction, and focuses on the three female main characters. The game ranked twice in the national top 50 for best-selling PC games sold in Japan.

    Much of the staff that created the game later became the founding members of the visual novel brand Key. Moon was the starting point for Key's origins, and was the first time the principal Key team was formed. A novel based on the game written by Midori Tateyama was released in July 1998 by Movic. The game's original soundtrack was released bundled with Dōsei's soundtrack in August 2000 at Comiket 58; Dōsei was Tactics' first game. Moon has been referenced in other media not directly related to the game, such as in Tactics' third game One: Kagayaku Kisetsu e, and in the second anime adaptation of Key's first game Kanon.

    Natural satellite

    A natural satellite is a celestial body that orbits another celestial body of greater mass (e.g., a planet, star, or dwarf planet), which is called its primary. For example, the Moon is a natural satellite of Earth, and Earth is a natural satellite of the Sun.

    In the Solar System there are 173 known natural satellites which orbit within 6 planetary satellite systems. In addition, several other objects are known to have satellites, including three IAU-listed dwarf planets: Pluto, Haumea, and Eris.As of January 2012, over 200 minor-planet moons have been discovered. There are 76 known objects in the asteroid belt with satellites (five with two each), four Jupiter trojans, 39 near-Earth objects (two with two satellites each), and 14 Mars-crossers. There are also 84 known natural satellites of trans-Neptunian objects. Some 150 additional small bodies have been observed within the rings of Saturn, but only a few were tracked long enough to establish orbits. Planets around other stars are likely to have satellites as well, and although numerous candidates have been detected to date, none have yet been confirmed.

    Moon (disambiguation)

    The Moon is Earth's only natural satellite.

    Moon may also refer to:

    Celestial bodies

  • Natural satellite, of a planet or other celestial body
  • Moon (astrology), the ruling planet of Cancer
  • Moon, the single-star Chinese asterism corresponding to 37 Tauri
  • A lunar month, or one revolution of the Moon around the Earth, equal to 29.5 days.
  • The Moon in fiction
  • Places

  • Moon, Kentucky, an unincorporated community
  • Moon Township, Pennsylvania
  • Moon, South Dakota, a ghost town
  • Moon, Wisconsin, an unincorporated community
  • Moon River (disambiguation)
  • People

  • Moon (given name)
  • Moon (surname)
  • Nicknames

  • Jang Jae-Ho (born 1986), a South Korean professional gamer
  • Di "Moon" Zhang, Chinese-American member of the dance crew I.aM.mE
  • Monique "Moon" van Kempen, famous Dutch female Gold V League of Legends player.
  • Entertainment and media

    Film

  • Moon (film), a 2009 science fiction film starring Sam Rockwell
  • Literature and publications

  • Moon (visual novel), a Japanese adult visual novel
  • Moon Publications, a series of travel guides by Avalon Publishing Group
  • Podcasts:

    • Flyby of Helene, trojan moon of Saturn

      Synthetic flyby of saturns trojan moon Helene. Image Credits: Cassini Huygens NASA/JPL Digital Shape-model and image processing: Mattias Malmer Copyright 2015

      published: 19 Feb 2015
    • Saturn's Moon Helene

      A shot zooming in on the Saturnian dwarf moon of Helene! Made using SpaceEngine. Music: Saturn by Gustav Holst #spaceengine #saturn #cosmos #outerspace #theuniverse

      published: 16 Jul 2023
    • Helene (moon)

      Helene ( ; ) is a moon of Saturn. It was discovered by Pierre Laques and Jean Lecacheux in 1980 from ground-based observations at Pic du Midi Observatory, and was designated . In 1988 it was officially named after Helen of Troy, who was the granddaughter of Cronus (Saturn) in Greek mythology. The moon is also designated (12), a number which it received in 1982, under the designation Dione B, because it is co-orbital with Dione and located in its leading Lagrangian point (). It is one of four known trojan moons. __NOTOC__

      published: 19 Jan 2013
    • Why Helene Is A Trojan Moon Of Saturn? 4K

      Video Title: Why Helene Is A Trojan Moon Of Saturn? 4K Dive into the captivating world of Helene, one of Saturn's enigmatic Trojan moons, in stunning 4K resolution! Join us on an immersive journey through the depths of space as we uncover the secrets of this intriguing celestial body. Learn why Helene holds a special place in the Saturnian system and how its unique characteristics make it a fascinating subject of study for astronomers and space enthusiasts alike. From its unusual shape to its mysterious origin, this video explores the wonders of Helene and sheds light on why it stands out among Saturn's many moons. Don't miss this breathtaking exploration of Helene, the Trojan moon of Saturn, in glorious 4K detail! Subscribe now for more space adventures and discoveries.

      published: 23 Apr 2024
    • Saturn's moon Helene

      Although its colors may be subtle, Saturn's moon Helene is an enigma in any light. The moon was imaged in unprecedented detail in 2012 as the robotic Cassini spacecraft orbiting Saturn swooped to within a single Earth diameter of the diminutive moon. Although conventional craters and hills appear, the above image also shows terrain that appears unusually smooth and streaked. Planetary astronomers are inspecting these detailed images of Helene to glean clues about the origin and evolution of the 30-km across floating iceberg. Helene is also unusual because it circles Saturn just ahead of the large moon Dione, making it one of only four known Saturnian moons to occupy a gravitational dimple known as a stable Lagrange point. Image Credit: NASA, JPL-Caltech, SSI; Processing: Daniel Macháček A...

      published: 09 Aug 2023
    • Helene (moon of Saturn): Cassini Flyby, June 2011

      A 2011 flyby of Helene, the bizarrely grooved 'trojan' moon of Saturn's larger satellite Dione.

      published: 20 Jun 2011
    • Saturn Moon -Helene

      Ich habe dieses Video mit dem Video-Editor von YouTube (http://www.youtube.com/editor) erstellt.

      published: 12 Nov 2013
    • Helene Flyby (minor moon of Saturn)

      Flyby of Helene by the Cassini spacecraft.

      published: 04 Mar 2010
    • Helene Saturn's Tiny Trojan Moon

      **Helene: Saturn's Tiny Trojan Moon** Helene, one of Saturn's diminutive moons, holds a remarkable place in the planet's moon system as a Trojan moon, trailing along the same orbital path as the larger moon Dione. Named after the mythological character associated with the Trojan War, Helene was discovered in 1980 by the Voyager 2 spacecraft during its flyby of Saturn. With a diameter of approximately 36 kilometers (22 miles), Helene is relatively small compared to some of Saturn's other moons. Its surface is characterized by its irregular shape and pale color, reflecting the sunlight that filters through Saturn's rings. Helene's unique status as a Trojan moon means that it shares its orbit with another moon, in this case, Dione. Trojan moons are located at stable points known as Lagrang...

      published: 21 Jul 2024
    • Meditate and Relax to the Soothing Sounds of Helene Moon's Space Music

      Escape to the tranquility of space and experience the calming effects of Helene Moon's Space Relaxing Meditation Music. Let the peaceful sounds and natural rhythms of this music transport you to a state of deep relaxation, perfect for meditation, yoga, or unwinding after a long day. Helene Moon's Space Music has been specially crafted to help reduce stress, improve focus and promote overall well-being. Immerse yourself in the beauty of the cosmos and find your inner peace with Helene Moon's Space Relaxing Meditation Music. Whether you're looking to relax after a long day or want to elevate your meditation practice, Helene Moon's Space Music is the perfect choice 🎶 Download & stream my music from the following sources: ▶ ‎Apple Music: https://t.ly/pvRb ▶ Spotify: https://t.ly/OMSE ▶ Amazo...

      published: 20 Feb 2021
    developed with YouTube
    Flyby of Helene, trojan moon of Saturn
    0:56

    Flyby of Helene, trojan moon of Saturn

    • Order:
    • Duration: 0:56
    • Uploaded Date: 19 Feb 2015
    • views: 1168
    Synthetic flyby of saturns trojan moon Helene. Image Credits: Cassini Huygens NASA/JPL Digital Shape-model and image processing: Mattias Malmer Copyright 2015
    https://wn.com/Flyby_Of_Helene,_Trojan_Moon_Of_Saturn
    Saturn's Moon Helene
    0:05

    Saturn's Moon Helene

    • Order:
    • Duration: 0:05
    • Uploaded Date: 16 Jul 2023
    • views: 5237
    A shot zooming in on the Saturnian dwarf moon of Helene! Made using SpaceEngine. Music: Saturn by Gustav Holst #spaceengine #saturn #cosmos #outerspace #theuniverse
    https://wn.com/Saturn's_Moon_Helene
    Helene (moon)
    1:11

    Helene (moon)

    • Order:
    • Duration: 1:11
    • Uploaded Date: 19 Jan 2013
    • views: 184
    Helene ( ; ) is a moon of Saturn. It was discovered by Pierre Laques and Jean Lecacheux in 1980 from ground-based observations at Pic du Midi Observatory, and was designated . In 1988 it was officially named after Helen of Troy, who was the granddaughter of Cronus (Saturn) in Greek mythology. The moon is also designated (12), a number which it received in 1982, under the designation Dione B, because it is co-orbital with Dione and located in its leading Lagrangian point (). It is one of four known trojan moons. __NOTOC__
    https://wn.com/Helene_(Moon)
    Why Helene Is A Trojan Moon Of Saturn? 4K
    2:45

    Why Helene Is A Trojan Moon Of Saturn? 4K

    • Order:
    • Duration: 2:45
    • Uploaded Date: 23 Apr 2024
    • views: 81
    Video Title: Why Helene Is A Trojan Moon Of Saturn? 4K Dive into the captivating world of Helene, one of Saturn's enigmatic Trojan moons, in stunning 4K resolution! Join us on an immersive journey through the depths of space as we uncover the secrets of this intriguing celestial body. Learn why Helene holds a special place in the Saturnian system and how its unique characteristics make it a fascinating subject of study for astronomers and space enthusiasts alike. From its unusual shape to its mysterious origin, this video explores the wonders of Helene and sheds light on why it stands out among Saturn's many moons. Don't miss this breathtaking exploration of Helene, the Trojan moon of Saturn, in glorious 4K detail! Subscribe now for more space adventures and discoveries.
    https://wn.com/Why_Helene_Is_A_Trojan_Moon_Of_Saturn_4K
    Saturn's moon Helene
    0:22

    Saturn's moon Helene

    • Order:
    • Duration: 0:22
    • Uploaded Date: 09 Aug 2023
    • views: 120
    Although its colors may be subtle, Saturn's moon Helene is an enigma in any light. The moon was imaged in unprecedented detail in 2012 as the robotic Cassini spacecraft orbiting Saturn swooped to within a single Earth diameter of the diminutive moon. Although conventional craters and hills appear, the above image also shows terrain that appears unusually smooth and streaked. Planetary astronomers are inspecting these detailed images of Helene to glean clues about the origin and evolution of the 30-km across floating iceberg. Helene is also unusual because it circles Saturn just ahead of the large moon Dione, making it one of only four known Saturnian moons to occupy a gravitational dimple known as a stable Lagrange point. Image Credit: NASA, JPL-Caltech, SSI; Processing: Daniel Macháček Authors & editors: Robert Nemiroff (MTU) & Jerry Bonnell (UMCP) Some of the links in this video/description may be affiliate links. We are Amazon affiliates. This means that if you click on one of the links and make a purchase, we may receive a commission (at no extra charge to you).
    https://wn.com/Saturn's_Moon_Helene
    Helene (moon of Saturn): Cassini Flyby, June 2011
    1:15

    Helene (moon of Saturn): Cassini Flyby, June 2011

    • Order:
    • Duration: 1:15
    • Uploaded Date: 20 Jun 2011
    • views: 5293
    A 2011 flyby of Helene, the bizarrely grooved 'trojan' moon of Saturn's larger satellite Dione.
    https://wn.com/Helene_(Moon_Of_Saturn)_Cassini_Flyby,_June_2011
    Saturn Moon  -Helene
    0:22

    Saturn Moon -Helene

    • Order:
    • Duration: 0:22
    • Uploaded Date: 12 Nov 2013
    • views: 122
    Ich habe dieses Video mit dem Video-Editor von YouTube (http://www.youtube.com/editor) erstellt.
    https://wn.com/Saturn_Moon_Helene
    Helene Flyby (minor moon of Saturn)
    0:15

    Helene Flyby (minor moon of Saturn)

    • Order:
    • Duration: 0:15
    • Uploaded Date: 04 Mar 2010
    • views: 2421
    Flyby of Helene by the Cassini spacecraft.
    https://wn.com/Helene_Flyby_(Minor_Moon_Of_Saturn)
    Helene Saturn's Tiny Trojan Moon
    2:12

    Helene Saturn's Tiny Trojan Moon

    • Order:
    • Duration: 2:12
    • Uploaded Date: 21 Jul 2024
    • views: 152
    **Helene: Saturn's Tiny Trojan Moon** Helene, one of Saturn's diminutive moons, holds a remarkable place in the planet's moon system as a Trojan moon, trailing along the same orbital path as the larger moon Dione. Named after the mythological character associated with the Trojan War, Helene was discovered in 1980 by the Voyager 2 spacecraft during its flyby of Saturn. With a diameter of approximately 36 kilometers (22 miles), Helene is relatively small compared to some of Saturn's other moons. Its surface is characterized by its irregular shape and pale color, reflecting the sunlight that filters through Saturn's rings. Helene's unique status as a Trojan moon means that it shares its orbit with another moon, in this case, Dione. Trojan moons are located at stable points known as Lagrangian points, where the gravitational forces of two larger bodies balance each other out, allowing smaller objects to remain in a relatively stable position. Despite its small size, Helene plays a significant role in Saturn's moon system. Its gravitational interactions with Dione help to shape the orbits of both moons, contributing to the overall dynamics of Saturn's moon system. Observations from spacecraft, including the Cassini mission, have provided valuable insights into Helene's composition and surface features. Although its surface is primarily composed of water ice, Helene's exact composition and geological history remain largely unknown. Future missions to Saturn and its moons, such as the proposed Enceladus Explorer mission, may shed more light on Helene and its role in the Saturnian system. By studying Helene and its interactions with Dione, scientists hope to gain a better understanding of the dynamics of Saturn's moon system and the processes that shape it. Helene may be small and relatively unknown, but its presence in Saturn's moon system adds to the rich tapestry of moons that orbit the ringed planet, reminding us of the diverse and dynamic nature of the outer solar system. #Helene #SaturnMoon #TrojanMoon #SpaceExploration #Astronomy #PlanetaryScience #CassiniMission #SpaceDiscovery #SaturnsMoons #SolarSystemExploration #CosmicWonders #SpaceScience #TrojanMoon #Astrogeology #CelestialBodies #SolarSystemMysteries #SpaceInnovation #PlanetaryDynamics #CelestialExploration #SpaceAdventure #SpaceDiscoveries #SaturnsMoonSystem #Astrobiology #SaturnMoons #AstronomicalResearch #SpaceDiscoveries #OuterSolarSystem #SaturnRings #SaturnExploration #SaturnsTinyMoon #SaturnsMoonHelene #SaturnianSystem #SaturnsMoonSystem ~~~ #factoid #facts #explore #fact #didyouknow #factoftheday #memes #nichememes #scarymemes #truth #factsdaily #funnymemes #true #factotum #factura #certain #trivia #objectivity #matter #fyp
    https://wn.com/Helene_Saturn's_Tiny_Trojan_Moon
    Meditate and Relax to the Soothing Sounds of Helene Moon's Space Music
    1:01:00

    Meditate and Relax to the Soothing Sounds of Helene Moon's Space Music

    • Order:
    • Duration: 1:01:00
    • Uploaded Date: 20 Feb 2021
    • views: 1511
    Escape to the tranquility of space and experience the calming effects of Helene Moon's Space Relaxing Meditation Music. Let the peaceful sounds and natural rhythms of this music transport you to a state of deep relaxation, perfect for meditation, yoga, or unwinding after a long day. Helene Moon's Space Music has been specially crafted to help reduce stress, improve focus and promote overall well-being. Immerse yourself in the beauty of the cosmos and find your inner peace with Helene Moon's Space Relaxing Meditation Music. Whether you're looking to relax after a long day or want to elevate your meditation practice, Helene Moon's Space Music is the perfect choice 🎶 Download & stream my music from the following sources: ▶ ‎Apple Music: https://t.ly/pvRb ▶ Spotify: https://t.ly/OMSE ▶ Amazon: https://t.ly/lMo9 ▶ Deezer: https://t.ly/uMol ▶ 7 Digital: https://t.ly/5l6I ▶ Napster: https://t.ly/4J4y ▶ Tidal: https://t.ly/wMCZ ▶ iTunes: https://t.ly/ICw3 ▶ YouTube Music: https://t.ly/HIJh
    https://wn.com/Meditate_And_Relax_To_The_Soothing_Sounds_Of_Helene_Moon's_Space_Music
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Flyby of Helene, trojan moon of Saturn
      0:56
      Flyby of Helene, trojan moon of Saturnremove from playlist
    • Saturn's Moon Helene
      0:05
      Saturn's Moon Heleneremove from playlist
    • Helene (moon)
      1:11
      Helene (moon)remove from playlist
    • Why Helene Is A Trojan Moon Of Saturn? 4K
      2:45
      Why Helene Is A Trojan Moon Of Saturn? 4Kremove from playlist
    • Saturn's moon Helene
      0:22
      Saturn's moon Heleneremove from playlist
    • Helene (moon of Saturn): Cassini Flyby, June 2011
      1:15
      Helene (moon of Saturn): Cassini Flyby, June 2011remove from playlist
    • Saturn Moon  -Helene
      0:22
      Saturn Moon -Heleneremove from playlist
    • Helene Saturn's Tiny Trojan Moon
      2:12
      Helene Saturn's Tiny Trojan Moonremove from playlist
    • Meditate and Relax to the Soothing Sounds of Helene Moon's Space Music
      1:01:00
      Meditate and Relax to the Soothing Sounds of Helene Moon's Space Musicremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Flyby of Helene, trojan moon of Saturn

    Synthetic flyby of saturns trojan moon Helene. Image Credits: Cassini Huygens NASA/JPL Digital Shape-model and image processing: Mattias Malmer Copyright 2015
    0:56
    Flyby of Helene, trojan moon of Saturn
    Synthetic flyby of saturns trojan moon Helene. Image Credits: Cassini Huygens NASA/JPL D...
    published: 19 Feb 2015
    Play in Full Screen
    0:05
    Saturn's Moon Helene
    A shot zooming in on the Saturnian dwarf moon of Helene! Made using SpaceEngine. Music: S...
    published: 16 Jul 2023
    Play in Full Screen
    1:11
    Helene (moon)
    Helene ( ; ) is a moon of Saturn. It was discovered by Pierre Laques and Jean Lecacheux in...
    published: 19 Jan 2013
    Play in Full Screen
    2:45
    Why Helene Is A Trojan Moon Of Saturn? 4K
    Video Title: Why Helene Is A Trojan Moon Of Saturn? 4K Dive into the captivating world of...
    published: 23 Apr 2024
    Play in Full Screen
    0:22
    Saturn's moon Helene
    Although its colors may be subtle, Saturn's moon Helene is an enigma in any light. The moo...
    published: 09 Aug 2023
    Play in Full Screen
    1:15
    Helene (moon of Saturn): Cassini Flyby, June 2011
    A 2011 flyby of Helene, the bizarrely grooved 'trojan' moon of Saturn's larger satellite D...
    published: 20 Jun 2011
    Play in Full Screen
    0:22
    Saturn Moon -Helene
    Ich habe dieses Video mit dem Video-Editor von YouTube (http://www.youtube.com/editor) ers...
    published: 12 Nov 2013
    Play in Full Screen
    0:15
    Helene Flyby (minor moon of Saturn)
    Flyby of Helene by the Cassini spacecraft.
    published: 04 Mar 2010
    Play in Full Screen
    2:12
    Helene Saturn's Tiny Trojan Moon
    **Helene: Saturn's Tiny Trojan Moon** Helene, one of Saturn's diminutive moons, holds a r...
    published: 21 Jul 2024
    Play in Full Screen
    1:01:00
    Meditate and Relax to the Soothing Sounds of Helene Moon's Space Music
    Escape to the tranquility of space and experience the calming effects of Helene Moon's Spa...
    published: 20 Feb 2021
    Play in Full Screen

    Helene (moon)

    Helene (/ˈhɛln/ HEL-ə-nee;Greek: Ἑλένη) is a moon of Saturn. It was discovered by Pierre Laques and Jean Lecacheux in 1980 from ground-based observations at Pic du Midi Observatory, and was designated S/1980 S 6. In 1988 it was officially named after Helen of Troy, who was the granddaughter of Cronus (Saturn) in Greek mythology. Helene is also designated Saturn XII (12), which it was given in 1982, and Dione B, because it is co-orbital with Dione and located in its leading Lagrangian point (L4). It is one of four known trojan moons.

    Exploration

    Helene was initially observed from Earth in 1980, and Voyager flybys of Saturn in the early 1980s allowed much closer views. The Cassini–Huygens mission, which went into orbit around Saturn in 2004, provided still better views, and allowed more in-depth analysis of Helene, including views of the surface under different lighting conditions. Some of the closest images of Helene to date are from the Cassini spacecraft's 1800 km flyby on March 3, 2010, and another very successful imaging sequence occurred in June 2011. There have been many other approaches over the course of the Cassini mission, and future flybys may yield additional data.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: helene (moon)

    Edit

    CU Boulder’s support for first-generation students is the “best-kept secret” the university has, leaders say

    Denver Post 19 Jan 2025
    Helen Nguyen, a CU Boulder sophomore, referred to herself as Jerry Nguyen’s No ... “I would go to the moon and back for her,” Helen Nguyen said ... “Now I’m graced with her presence every day,” Helen Nguyen said.
    Edit

    How removing unpaid medical bills from credit reports could help consumers

    York News-Times 11 Jan 2025
    Lenders no longer will be able to consider unpaid medical bills as a credit history factor when they evaluate potential borrowers in the U.S ... Jacquelyn Martin, Associated Press ... How are advocates responding? ... By Helen Regan, CNN ... Stress and ‘moon face’ ... .
    Edit

    Pastor Bo: Time to say goodbye to 2024 and hello to 2025

    Chatanooga Times Free Press 28 Dec 2024
    Elon Musk becomes the most interesting man in the world to almost everyone, half of which hate his guts and the other half of which thinks he hung the moon on his way to colonize Mars.
    Edit

    Savannah nonprofit to hold diaper giveaway to help struggling families with basic needs

    Savannah Morning News 07 Dec 2024
    When Tropical Storm Debby and Hurricane >Helene hit Georgia and affected 16 counties, Over the Moon sprang into action and distributed more than 200,000 supplies to residents of those areas, Griffith said ... Over the Moon Diaper Bank.
    Edit

    Community calendar Thursday, November 28–Wednesday, December 4

    Crested Butte News 28 Nov 2024
    THURSDAY 28. •7.30 a.m. Open AA meeting. Crack of Dawn Group topic discussion at the Union Congregational Church, 970-349-5711. •10-11.30 a.m. CB Museum history walking tours (every Thursday). •4-5.30 p.m. St ... •6.30 p.m ... New Moon Sound Bath with T. Helen Sage.
    Edit

    Meet the Briton spearheading the search for life around Jupiter

    The Times/The Sunday Times 22 Nov 2024
    among them New Horizons, which studied Pluto and its moons up close and in 2019 examined Arrokoth, the most distant object ever explored.Advertisement. • Helen Sharman, first British astronaut.
    Edit

    Ruddigore

    British Theatre Guide 15 Nov 2024
    The pace never slows down, climaxing in a superb comic duet between John Savournin, playing the straight man, and Helen Évora, close to barking at the moon.
    Edit

    Community calendar Thursday, November 14–Wednesday, November 20

    Crested Butte News 13 Nov 2024
    •The Crested Butte Mountain Theatre puts on The Giver by Lois Lowry from November 7-17 at The Mallardi Cabaret Theatre. Times are 7.00 p.m. for Thurs-Sat, 2.30 p.m ... Full Moon Sound Bath with T. Helen Sage at Sage Transformations 311 5th St or via ZOOM ... .
    Edit

    Exclusive Interview with King Mamay Abdurajak: The Raja of Maharlika & Southeast Asia Speaks on ...

    GetNews 28 Oct 2024
    This 'TRAVEL IN TIME' is guarded and protected by Ama Ali Datu Ismael Moon Ali Sultan Toron Lawan Dumaga Sultan Esmail E ... Ama Ali (for short) is the Spiritual Godfather of my wife, Queen Helen Abdurajak ... Queen Helen Abdurajak is my beloved wife.
    Edit

    Now a THIRD council has allowed a pupil to identify as an animal

    The Daily Mail 27 Oct 2024
    In other schools, pupils apparently insisted on being addressed as a dinosaur and one claimed to identify as a horse - while another was said to wear a cape and demanded to be acknowledged as a moon.
    Edit

    Marshfield nonprofit, Teamsters and community turn out to deliver Hurricane Helene relief supplies to North Carolina

    Boston Herald 16 Oct 2024
    Donna Green, founder and executive director of Magical Moon Farm and Foundation, said the idea for to collect donations came to her after seeing the devastation in North Carolina left in the wake of Hurricane >Helene.
    Edit

    FEMA changes in Senate bill filed before Helene, Milton

    Guam Pacific Daily News 16 Oct 2024
    (The Center Square) – A proposal senators from Michigan and North Carolina say could be helping victims of natural disasters was already filed before Hurricanes Helene and Milton ruptured lives in the southeastern United States.
    Edit

    UK's Starmer hails 'landmark' carbon capture funding

    Knoxville Daily Sun 04 Oct 2024
    Britain's last coal-fired power station closed at the start of the week, boosting the country's ambitions to become carbon neutral by 2050 ... +2. Southeast US reels as storm Helene death toll passes 210 ... Rolex that’s been to the Moon being auctioned off.
    Edit

    As EU targets Chinese cars, European rivals sputter

    Knoxville Daily Sun 04 Oct 2024
    As the EU seeks to put a brake on competition from Chinese electric cars, European automakers are stuck in second gear ... - 'Grave danger' - ... +2. Southeast US reels as storm Helene death toll passes 210 ... Rolex that’s been to the Moon being auctioned off.
    Edit

    After Helene's destruction, a mountain town reliant on fall tourism wonders what's next

    Newsday 01 Oct 2024
    Several incense sticks poke out of a bowl outside of Dancing Moon Earthway Bookstore for passersby to use after Tropical Storm Helene passed, along King Street in downtown Boone, N.C., on Monday, Sept.

    Most Viewed

    ×