'+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; })); }); -->

Astronomer

An astronomer is a scientist in the field of astronomy who studies stars, planets, moons, comets and galaxies, as well as many other celestial objects — either in Observational astronomy, in analyzing the data or in theoretical astronomy. A related but distinct subject, cosmology, is concerned with studying the Universe as a whole. An astronomer researches the world beyond Earth.

Academic

Historically, astronomy was more concerned with the classification and description of phenomena in the sky, while astrophysics attempted to explain these phenomena and the differences between them using physical laws. Today, that distinction has mostly disappeared and the terms "astronomer" and "astrophysicist" are interchangeable. Professional astronomers are highly educated individuals who typically have a PhD in physics or astronomy and are employed by research institutions or universities. They spend the majority of their time working on research, although they quite often have other duties such as teaching, building instruments, or aiding in the operation of an observatory.

Astronomer (comics)

The Astronomer (Seginn Gallio) is a fictional character, an ancient alien appearing in the Marvel Comics universe. He is one of the Elders of the Universe. His first appearance was in Silver Surfer (Vol.3) #4.

Fictional character biography

Long ago, the Astronomer chose to dedicate himself monomaniacally to chronicling the slow evolution of the stars and galaxies themselves. He long ago lost interest in living beings.

List of Wild Cards characters

This is a list of characters from the Wild Cards book series.

Major

Astronomer

The Astronomer is a character from the Wild Cards series of books. He first appeared in the short story "Pennies from Hell" by Lewis Shiner in Wild Cards II: Aces High, though his presence was earlier implied in "The Long, Dark Night of Fortunato" in the first volume of the series. Leader of a cult consisting mainly of superhuman aces and deformed jokers known as the Egyptian Freemasons. The Astronomer planned to conquer the world in the aftermath of an invasion by fungoid aliens called the Swarm. Unknown to him, the Shakti device of the Egyptian Freemasons lacked a power source and was designed to contact an alien organization, the Network. Once his plans were foiled, the Astronomer lived only for revenge.

The Astronomer is an old man (born in 1925), who has thinning white hair, wears glasses and is best described as "mole-like"; he is also noted as having a disproportionately large head, the upper part of which enlarges further when he is fully empowered. He has wiped his own memory of all events prior to becoming the Astronomer. The Astronomer usually uses a wheelchair, although the proper use of his Ace powers can allow him to walk. The Astronomer practices a horrific form of death magic, gaining immense energy through the ritualistic slaying of his victims (usually young women). He greatly enjoys having Demise slowly kill the victims, taking their suffering from projected death as his energy source.

Podcasts:

  • Astronomer Carl Sagan on children and their curious questions #astrophysics

    published: 28 Jan 2023
  • A telescope is a must toy 🔭 #astronomy #shorts

    My telescope - Celestron 9.25” sct and cgemii mount: https://bit.ly/46481dE  Main camera - zwo 183mc pro Guide camera - zwo asi299mm mini Zwo asi air pro to control the telescope

    published: 14 Jul 2022
  • Astronomers found a planet better for us than Earth…

    published: 02 Jul 2024
  • Introduction to Astronomy: Crash Course Astronomy #1

    Welcome to the first episode of Crash Course Astronomy. Your host for this intergalactic adventure is the Bad Astronomer himself, Phil Plait. We begin with answering a question: "What is astronomy?" Check out the Crash Course Astronomy solar system poster here: http://store.dftba.com/products/crashcourse-astronomy-poster -- Chapters: Introduction 00:00 What is Astronomy? 3:00 Who Studies Astronomy? 3:50 Origins of Astronomy 5:27 Astrology vs Astronomy 6:19 Geocentrism 7:51 Revolutions in Astronomy 8:58 Astronomy Today 10:26 Review 11:29 -- PBS Digital Studios: http://youtube.com/pbsdigitalstudios Follow Phil on Twitter: https://twitter.com/badastronomer Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Want to find Crash Cou...

    published: 15 Jan 2015
  • Astronomer Carl Sagan talks about Radio waves #astrophysics

    published: 14 Jan 2023
  • Famous Arab Astronomer learnt Astronomy from India🔥 | Keerthi History

    published: 18 May 2023
  • 3 Rules For Choosing A Beginner Telescope #astronomy #Telescope

    published: 12 Jan 2024
  • Conan Gray - Astronomy (Official Lyric Video)

    Astronomy available now: https://ConanGray.lnk.to/AstronomyYD Video by: @niko.miller Connect with Conan: Instagram: https://www.instagram.com/conangray Twitter: https://twitter.com/conangray Facebook: https://www.facebook.com/conangrayofficial TikTok: https://www.tiktok.com/@conangray Official Site: http://www.conangray.com Lyrics: We drive through the woods Rich neighborhoods to watch We joked as we looked That they were too good for us Cause socially speaking We were the same With runaway fathers and mothers who drank A tale old as time Young love don’t last for life And now I know Now I know It’s time to go It’s time to go We’ve traveled the seas We’ve ridden the stars We’ve seen everything from Saturn to Mars As much as it seems Like you own my heart...

    published: 07 May 2021
  • What's happening at the largest cosmic scales? #cosmoknowledge #space #cosmos #universe #astronomy

    published: 07 Mar 2025
  • A day in the life of an astrophysicist - Advent of Astronomy Day 21 #AoA #astronomy

    What does a typical day look like for an astrophysicist? It's time for Advent of Astronomy - a short video on something astronomical every day! Subscribe for more! --------- II --------- Watch me live on twitch - https://www.twitch.tv/ThomAstroSci Insta - https://www.instagram.com/thomas.rintoul X/Twitter - https://www.twitter.com/thomas_rintoul --------- II --------- My photography: https://www.instagram.com/thomas_rintoul_photo What I'm Reading: https://www.goodreads.com/thomasrintoul Email: inversionscience@gmail.com --------- II --------- Music by Artlist: https://www.artlist.io

    published: 21 Dec 2023
Astronomer Carl Sagan on children and their curious questions #astrophysics
0:29

Astronomer Carl Sagan on children and their curious questions #astrophysics

  • Order:
  • Duration: 0:29
  • Uploaded Date: 28 Jan 2023
  • views: 47695074
https://wn.com/Astronomer_Carl_Sagan_On_Children_And_Their_Curious_Questions_Astrophysics
A telescope is a must toy 🔭 #astronomy #shorts
0:14

A telescope is a must toy 🔭 #astronomy #shorts

  • Order:
  • Duration: 0:14
  • Uploaded Date: 14 Jul 2022
  • views: 53526392
My telescope - Celestron 9.25” sct and cgemii mount: https://bit.ly/46481dE  Main camera - zwo 183mc pro Guide camera - zwo asi299mm mini Zwo asi air pro to control the telescope
https://wn.com/A_Telescope_Is_A_Must_Toy_🔭_Astronomy_Shorts
Astronomers found a planet better for us than Earth…
0:54

Astronomers found a planet better for us than Earth…

  • Order:
  • Duration: 0:54
  • Uploaded Date: 02 Jul 2024
  • views: 1668457
https://wn.com/Astronomers_Found_A_Planet_Better_For_US_Than_Earth…
Introduction to Astronomy: Crash Course Astronomy #1
12:12

Introduction to Astronomy: Crash Course Astronomy #1

  • Order:
  • Duration: 12:12
  • Uploaded Date: 15 Jan 2015
  • views: 5175201
Welcome to the first episode of Crash Course Astronomy. Your host for this intergalactic adventure is the Bad Astronomer himself, Phil Plait. We begin with answering a question: "What is astronomy?" Check out the Crash Course Astronomy solar system poster here: http://store.dftba.com/products/crashcourse-astronomy-poster -- Chapters: Introduction 00:00 What is Astronomy? 3:00 Who Studies Astronomy? 3:50 Origins of Astronomy 5:27 Astrology vs Astronomy 6:19 Geocentrism 7:51 Revolutions in Astronomy 8:58 Astronomy Today 10:26 Review 11:29 -- PBS Digital Studios: http://youtube.com/pbsdigitalstudios Follow Phil on Twitter: https://twitter.com/badastronomer Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Instagram - https://www.instagram.com/thecrashcourse/ CC Kids: http://www.youtube.com/crashcoursekids -- Photos: http://commons.wikimedia.org/wiki/File:Earth_cutaway.png http://en.wikipedia.org/wiki/Earth%27s_magnetic_field#mediaviewer/File:Geodynamo_Between_Reversals.gif http://en.wikipedia.org/wiki/Geomagnetic_storm#mediaviewer/File:Magnetosphere_rendition.jpg http://en.wikipedia.org/wiki/Saturn#mediaviewer/File:Saturn_PIA06077.jpg http://en.wikipedia.org/wiki/243_Ida#mediaviewer/File:243_Ida_large.jpg http://commons.wikimedia.org/wiki/File:Comet_Hale_Bopp_NASA.jpg http://solarviews.com/raw/comet/kuiper3.jpg http://solarviews.com/cap/comet/kuiper3.htm http://en.wikipedia.org/wiki/List_of_nearest_bright_stars#mediaviewer/File:3_Solar_Interstellar_Neighborhood_(ELitU).png http://www.slate.com/blogs/bad_astronomy/2013/06/28/planetary_nebula_sh2_68_the_flaming_skull_nebula.html http://www.slate.com/blogs/bad_astronomy/2013/06/06/milky_way_galaxy_two_new_discoveries_about_its_spiral_arms.html http://en.wikipedia.org/wiki/Black_hole#mediaviewer/File:PIA16695-BlackHole-Corona-20130227.jpg http://commons.wikimedia.org/wiki/File:Messier_69_HST.jpg http://www.slate.com/blogs/bad_astronomy/2013/06/25/nearby_galaxies_swift_uv_pictures_of_two_galactic_neighbors.html http://upload.wikimedia.org/wikipedia/commons/0/0f/Earth%27s_Location_in_the_Universe_SMALLER_%28JPEG%29.jpg http://www.slate.com/blogs/bad_astronomy/2013/03/21/age_of_the_universe_planck_results_show_universe_is_13_82_billion_years.html http://www.esa.int/spaceinimages/Images/2007/02/True-colour_image_of_Mars_seen_by_OSIRIS http://en.wikipedia.org/wiki/Andromeda_Galaxy#mediaviewer/File:WISE-_Andromeda.jpg http://en.wikipedia.org/wiki/Triangulum_Galaxy#mediaviewer/File:VST_snaps_a_very_detailed_view_of_the_Triangulum_Galaxy.jpg http://en.wikipedia.org/wiki/Hubble_Space_Telescope#mediaviewer/File:HST-SM4.jpeg http://www.slate.com/blogs/bad_astronomy/2013/12/21/winter_solstice_2013_the_shortest_day_of_the_year.html http://www.slate.com/blogs/bad_astronomy/2012/12/28/full_moon_today_is_the_13th_full_moon_of_2012.html http://en.wikipedia.org/wiki/Nicolaus_Copernicus#mediaviewer/File:Nikolaus_Kopernikus.jpg http://en.wikipedia.org/wiki/Tycho_Brahe#mediaviewer/File:Tycho_Brahe.JPG http://en.wikipedia.org/wiki/Johannes_Kepler#mediaviewer/File:Johannes_Kepler_1610.jpg http://en.wikipedia.org/wiki/Isaac_Newton#mediaviewer/File:GodfreyKneller-IsaacNewton-1689.jpg http://en.wikipedia.org/wiki/Galileo_Galilei#mediaviewer/File:Justus_Sustermans_-_Portrait_of_Galileo_Galilei,_1636.jpg http://www.slate.com/blogs/bad_astronomy/2012/09/25/revealing_the_universe_the_hubble_extreme_deep_field.html
https://wn.com/Introduction_To_Astronomy_Crash_Course_Astronomy_1
Astronomer Carl Sagan talks about Radio waves #astrophysics
0:35

Astronomer Carl Sagan talks about Radio waves #astrophysics

  • Order:
  • Duration: 0:35
  • Uploaded Date: 14 Jan 2023
  • views: 9708331
https://wn.com/Astronomer_Carl_Sagan_Talks_About_Radio_Waves_Astrophysics
Famous Arab Astronomer learnt Astronomy from India🔥 | Keerthi History
0:19

Famous Arab Astronomer learnt Astronomy from India🔥 | Keerthi History

  • Order:
  • Duration: 0:19
  • Uploaded Date: 18 May 2023
  • views: 1262888
https://wn.com/Famous_Arab_Astronomer_Learnt_Astronomy_From_India🔥_|_Keerthi_History
3 Rules For Choosing A Beginner Telescope #astronomy #Telescope
1:01

3 Rules For Choosing A Beginner Telescope #astronomy #Telescope

  • Order:
  • Duration: 1:01
  • Uploaded Date: 12 Jan 2024
  • views: 251182
https://wn.com/3_Rules_For_Choosing_A_Beginner_Telescope_Astronomy_Telescope
Conan Gray - Astronomy (Official Lyric Video)
4:04

Conan Gray - Astronomy (Official Lyric Video)

  • Order:
  • Duration: 4:04
  • Uploaded Date: 07 May 2021
  • views: 11486788
Astronomy available now: https://ConanGray.lnk.to/AstronomyYD Video by: @niko.miller Connect with Conan: Instagram: https://www.instagram.com/conangray Twitter: https://twitter.com/conangray Facebook: https://www.facebook.com/conangrayofficial TikTok: https://www.tiktok.com/@conangray Official Site: http://www.conangray.com Lyrics: We drive through the woods Rich neighborhoods to watch We joked as we looked That they were too good for us Cause socially speaking We were the same With runaway fathers and mothers who drank A tale old as time Young love don’t last for life And now I know Now I know It’s time to go It’s time to go We’ve traveled the seas We’ve ridden the stars We’ve seen everything from Saturn to Mars As much as it seems Like you own my heart It’s astronomy We’re two worlds apart (It’s astronomy) We’re two worlds apart (It’s astronomy) We’re two worlds apart From far away I wish I’d stayed with you But here face to face A stranger that I once knew I thought if I wandered I’d fall back in love You said distance brings fondness But guess not with us The only mistake That we didn’t make Was run Now look what we’ve done We’ve traveled the seas We’ve ridden the stars We’ve seen everything from Saturn to Mars As much as it seems Like you own my heart It’s astronomy We’re two worlds apart (It’s astronomy) We’re two worlds apart Stop tryna keep us alive You’re pointing at stars in the sky That already died Stop tryna keep us alive You can’t force the stars to align When they’ve already died Oh we’ve died Ooh Oh, we’ve traveled the seas We’ve ridden the stars We’ve seen everything from Saturn to Mars As much as it seems Like you own my heart It’s astronomy We’re two worlds apart #ConanGray #Astronomy
https://wn.com/Conan_Gray_Astronomy_(Official_Lyric_Video)
What's happening at the largest cosmic scales? #cosmoknowledge #space #cosmos #universe #astronomy
0:42

What's happening at the largest cosmic scales? #cosmoknowledge #space #cosmos #universe #astronomy

  • Order:
  • Duration: 0:42
  • Uploaded Date: 07 Mar 2025
  • views: 2048
https://wn.com/What's_Happening_At_The_Largest_Cosmic_Scales_Cosmoknowledge_Space_Cosmos_Universe_Astronomy
A day in the life of an astrophysicist - Advent of Astronomy Day 21 #AoA #astronomy
0:57

A day in the life of an astrophysicist - Advent of Astronomy Day 21 #AoA #astronomy

  • Order:
  • Duration: 0:57
  • Uploaded Date: 21 Dec 2023
  • views: 15238
What does a typical day look like for an astrophysicist? It's time for Advent of Astronomy - a short video on something astronomical every day! Subscribe for more! --------- II --------- Watch me live on twitch - https://www.twitch.tv/ThomAstroSci Insta - https://www.instagram.com/thomas.rintoul X/Twitter - https://www.twitter.com/thomas_rintoul --------- II --------- My photography: https://www.instagram.com/thomas_rintoul_photo What I'm Reading: https://www.goodreads.com/thomasrintoul Email: inversionscience@gmail.com --------- II --------- Music by Artlist: https://www.artlist.io
https://wn.com/A_Day_In_The_Life_Of_An_Astrophysicist_Advent_Of_Astronomy_Day_21_Aoa_Astronomy
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME:

Astronomer Carl Sagan on children and their curious questions #astrophysics

0:29
Astronomer Carl Sagan on children and their curious questions #astrophysics
published: 28 Jan 2023
Play in Full Screen
0:14
A telescope is a must toy 🔭 #astronomy #shorts
My telescope - Celestron 9.25” sct and cgemii mount: https://bit.ly/46481dE  Main camera -...
published: 14 Jul 2022
Play in Full Screen
0:54
Astronomers found a planet better for us than Earth…
published: 02 Jul 2024
Play in Full Screen
12:12
Introduction to Astronomy: Crash Course Astronomy #1
Welcome to the first episode of Crash Course Astronomy. Your host for this intergalactic a...
published: 15 Jan 2015
Play in Full Screen
0:35
Astronomer Carl Sagan talks about Radio waves #astrophysics
published: 14 Jan 2023
Play in Full Screen
0:19
Famous Arab Astronomer learnt Astronomy from India🔥 | Keerthi History
published: 18 May 2023
Play in Full Screen
1:01
3 Rules For Choosing A Beginner Telescope #astronomy #Telescope
published: 12 Jan 2024
Play in Full Screen
4:04
Conan Gray - Astronomy (Official Lyric Video)
Astronomy available now: https://ConanGray.lnk.to/AstronomyYD Video by: @niko.miller Con...
published: 07 May 2021
Play in Full Screen
0:42
What's happening at the largest cosmic scales? #cosmoknowledge #space #cosmos #universe #astronomy
published: 07 Mar 2025
Play in Full Screen
0:57
A day in the life of an astrophysicist - Advent of Astronomy Day 21 #AoA #astronomy
What does a typical day look like for an astrophysicist? It's time for Advent of Astronomy...
published: 21 Dec 2023
Play in Full Screen

Astronomer

An astronomer is a scientist in the field of astronomy who studies stars, planets, moons, comets and galaxies, as well as many other celestial objects — either in Observational astronomy, in analyzing the data or in theoretical astronomy. A related but distinct subject, cosmology, is concerned with studying the Universe as a whole. An astronomer researches the world beyond Earth.

Academic

Historically, astronomy was more concerned with the classification and description of phenomena in the sky, while astrophysics attempted to explain these phenomena and the differences between them using physical laws. Today, that distinction has mostly disappeared and the terms "astronomer" and "astrophysicist" are interchangeable. Professional astronomers are highly educated individuals who typically have a PhD in physics or astronomy and are employed by research institutions or universities. They spend the majority of their time working on research, although they quite often have other duties such as teaching, building instruments, or aiding in the operation of an observatory.

'); } 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: Astronomer

Edit

Blame Old Man Winter for Astronomical Utility Bills

Putnam County News 02 Apr 2025
Dylan Miyoshi, NYSEG Municipal and […]. You must be subscribed to & logged in to read this article ... .
Edit

Canelo makes astronomical Crawford PPV sales prediction

WBN 01 Apr 2025
Share on Facebook. Share on X (Twitter). Share on Pinterest. Share on LinkedIn. Share on Reddit. Share on WhatsApp. Share on Email. Canelo Alvarez has made a bold prediction for his forthcoming clash with Terence Crawford in the fall ... If Canelo vs ... ....
Edit

Christine McGuinness reveals the astronomical amount of money she had to spend on divorcing ex-husband ...

The Daily Mail 01 Apr 2025
Christine McGuinness has candidly revealed the incredible amount of money she has spent on her divorce from ex-husband Paddy following their split ... Speaking on The Shizzio Show podcast, Christine revealed ... Shizzio quipped back ... Christine explained ... .
Edit

Astronomers discover space ‘tornadoes’ around our galaxy’s core

The Independent 31 Mar 2025
International researchers are not yet sure how the mysterious twisters formed .
Edit

Jets from powerful black holes can point astronomers toward where − and where not − ...

Idaho Press-Tribune 31 Mar 2025
(The Conversation is an independent and nonprofit source of news, analysis and commentary from academic experts.) ... .
Edit

"Blaze Star" stands up astronomers again, mysterious third body may be the culprit

Boing Boing 31 Mar 2025
The post "Blaze Star" stands up astronomers again, mysterious third body may be the culprit ...
Edit

Oil Region Astronomical Society to Host Public Night on April 5 - exploreClarion

Explore Clarion 31 Mar 2025
(EYT) – Please join the Oil Region Astronomical Society (ORAS) on Saturday, April 5, from 7.00 p.m ... He is a member of the Kiski Astronomers and ORAS, both in western Pennsylvania.
Edit

Pharaoh Shepseskaf's Strange Tomb May Have An Astronomical Explanation

IFL Science 31 Mar 2025
A new study on Ancient Egyptian dynasties has proposed an intriguing explanation for the mystery of Shepseskaf's tomb, relating it to a total solar eclipse in 2471 BCE ... Magli believes that this may have occurred due to an astronomical event ... .
Edit

What Is An Eccentric Orbit, And Which Astronomical Objects Have One?

IFL Science 31 Mar 2025
When a comet starts to approach the Sun or a planet is newly discovered orbiting another star, one of astronomers’ most important questions is how eccentric the orbit is.
Edit

Montsec Astronomical Park visitors observe first solar eclipse of the year 

Catalan News 29 Mar 2025
Montsec Astronomical Park, situated in the Montsec mountain range in western Catalonia.&nbsp; ... explanations about this partial solar eclipse and other astronomical events. .
Edit

Astronomical faith

Frederick News-Post 29 Mar 2025
I’ll never forget when the world got ready to enter the 21st century. Every New Year’s we’ve had since, including this past one, I always go back to the close of 1999 — remembering the ball drop on Dick Clark’s ... .
Edit

Scammers Hit iPhone and Android Users, Drain Bank Accounts in ‘Astronomical’ Attack Targeting Americans’ Smartphones

The Daily Hodl 29 Mar 2025
Cybercrime expert Michael Skiba tells CNBC he believes the actual scale of the attack is “astronomical”, with current reporting from victims representing a small slice of those who are truly affected ... Follow us on X, Facebook and Telegram.
×