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

Podcasts:

  • NGA Explains: What is Cartography?

    NGA explains the science of cartography.

    published: 03 Nov 2020
  • Introduction to Cartography

    Explores the theory of maps, map elements, different types of maps, and the how geographic information systems and remote sensing help make maps.

    published: 13 Feb 2023
  • Lesson 3 - Part 1: Introduction to Cartography

    Lesson 3 - Introduces viewers to Cartography and the science/art of making maps Part 1 - will introduce viewers to the discipline of cartography, the concept of mapping and map projections.

    published: 28 Jun 2015
  • A Brief History of Cartography and Maps

    Maps have always changed for humans throughout history, we are one of the few you have seen images of it, in real life. So how did past people perceive their world? Find out. Facebook: https://www.facebook.com/geographyhub/ Twitter: https://twitter.com/GeographyHub?lang=en

    published: 23 Jan 2016
  • Cartography, Projections and Scales

    This video explains the basic concepts of cartography, maps and charts; such as the most used projections, their characteristics and uses, as well as the concept of scale with practical examples. Do you want to support this channel? Become a member and receive exclusive benefits: https://www.youtube.com/c/AviationTheory/join Facebook Fanpage: https://www.facebook.com/Aviation-Theory-102745835488031 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: If you found this information useful, subscribe, share and like! Soon more content related to the aviation world.

    published: 12 Dec 2021
  • Introduction to Cartography

    Introduction to Cartography is a self-directed course from Learn ArcGIS. It's a curated set of lessons, articles, and videos about thematic mapping in ArcGIS Online and ArcGIS Pro. Each chapter includes a challenge activity and a checklist to help you apply your skills. This course is free. Look for it at https://introduction-to-cartography-learngis.hub.arcgis.com ____________________________________ Follow us on Social Media! Twitter: https://twitter.com/Esri Facebook: https://facebook.com/EsriGIS LinkedIn: https://www.linkedin.com/company/esri Instagram: https://www.instagram.com/esrigram TikTok: https://www.tiktok.com/@esri_maps The Science of Where: http://www.esri.com

    published: 24 Jan 2023
  • The biggest mistakes in mapmaking history - Kayla Wolf

    Travel through the history of mapmaking and discover what big mistakes cartographers made about the world’s geography. -- For thousands of years, people made both functional maps and what are known as cosmographies, illustrating the earth and its position in the cosmos, often including constellations, gods, and mythic locations. These maps were meant to depict the world's geography, but weren't necessarily useful for navigation and contained some glaring mistakes. Kayla Wolf shares mapmaking’s biggest blunders. Lesson by Kayla Wolf, directed by Serin İnan, Kozmonot Animation Studio. Tabula Rogeriana image from Konrad Miller: https://bit.ly/KonradMiller Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check ...

    published: 10 May 2022
  • Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data science

    In this video, I will teach you about the principles of cartographic symbolization. If you are interested in making effective maps for communicating different forms of data using geographic information system software (GIS), this video is for you! In this video, I cover two important topics: (1) data measurement principles as they apply to mapping and (2) visual variables which are the graphical forms that you use for encoding data on maps. Additional Resources: Slides for this video can be downloaded from: http://gisfordisastermanagement.com/youtube/ If you liked this and other videos on the geographic information science channel, please like these videos, leave comments, or subscribe to this channel so you can stay informed of new videos. Subscribe to this channel: https://www.yout...

    published: 15 Jan 2022
  • What is a Map? Crash Course Geography #2

    From navigating a cross-country road trip (or just finding the nearest coffee shop), to analyzing election results, maps play a huge role in how we interpret the world! Today, we're going to talk about the differences between reference maps and thematic maps, take a closer look at how projections play a part in how we perceive maps, and discuss the role of the cartographer (or map maker) in all of this. Maps are incredibly powerful tools and play a crucial role in how we understand the world, but they are also made by people, so it is our job to think critically about how these stories are being presented to us. Watch our videos and review your learning with the Crash Course App! Download here for Apple Devices: https://apple.co/3d4eyZo Download here for Android Devices: https://bit.ly/...

    published: 14 Dec 2020
  • How We Mapped the World Before Satellites

    The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https://skl.sh/khanubis06211 How did we make maps before we had planes and satellites to look at our world? Turns out some of the solutions were even more creative than I would have thought... MUSIC: “Unchartered” by Taomito* “In the Horizon” by Taomito* “Wing of Fire” by Ecovillage* “Namaste” by Audionautix “Genie’s Bane” by Deskant* “Globetrotter” by Adriel Fair* “When I Do This” by Esme Cruz* “Summer by Bensound (*via EpidemicSound) 👕 MERCH! https://crowdmade.com/collections/khanubis 📖 SOURCES: https://www.britannica.com/science/map/Maps-and-geography-in-the-ancient-world https://www.gislounge.com/mapping-through-the-ages/ https://www.thoughtco.com/the-history-of-cartography-1435696 https://www.icsm....

    published: 27 Jun 2021
NGA Explains: What is Cartography?
2:25

NGA Explains: What is Cartography?

  • Order:
  • Duration: 2:25
  • Uploaded Date: 03 Nov 2020
  • views: 53043
NGA explains the science of cartography.
https://wn.com/Nga_Explains_What_Is_Cartography
Introduction to Cartography
49:01

Introduction to Cartography

  • Order:
  • Duration: 49:01
  • Uploaded Date: 13 Feb 2023
  • views: 17990
Explores the theory of maps, map elements, different types of maps, and the how geographic information systems and remote sensing help make maps.
https://wn.com/Introduction_To_Cartography
Lesson 3 - Part 1: Introduction to Cartography
3:52

Lesson 3 - Part 1: Introduction to Cartography

  • Order:
  • Duration: 3:52
  • Uploaded Date: 28 Jun 2015
  • views: 51965
Lesson 3 - Introduces viewers to Cartography and the science/art of making maps Part 1 - will introduce viewers to the discipline of cartography, the concept of mapping and map projections.
https://wn.com/Lesson_3_Part_1_Introduction_To_Cartography
A Brief History of Cartography and Maps
7:04

A Brief History of Cartography and Maps

  • Order:
  • Duration: 7:04
  • Uploaded Date: 23 Jan 2016
  • views: 647240
Maps have always changed for humans throughout history, we are one of the few you have seen images of it, in real life. So how did past people perceive their world? Find out. Facebook: https://www.facebook.com/geographyhub/ Twitter: https://twitter.com/GeographyHub?lang=en
https://wn.com/A_Brief_History_Of_Cartography_And_Maps
Cartography, Projections and Scales
9:58

Cartography, Projections and Scales

  • Order:
  • Duration: 9:58
  • Uploaded Date: 12 Dec 2021
  • views: 68260
This video explains the basic concepts of cartography, maps and charts; such as the most used projections, their characteristics and uses, as well as the concept of scale with practical examples. Do you want to support this channel? Become a member and receive exclusive benefits: https://www.youtube.com/c/AviationTheory/join Facebook Fanpage: https://www.facebook.com/Aviation-Theory-102745835488031 :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: If you found this information useful, subscribe, share and like! Soon more content related to the aviation world.
https://wn.com/Cartography,_Projections_And_Scales
Introduction to Cartography
1:33

Introduction to Cartography

  • Order:
  • Duration: 1:33
  • Uploaded Date: 24 Jan 2023
  • views: 5243
Introduction to Cartography is a self-directed course from Learn ArcGIS. It's a curated set of lessons, articles, and videos about thematic mapping in ArcGIS Online and ArcGIS Pro. Each chapter includes a challenge activity and a checklist to help you apply your skills. This course is free. Look for it at https://introduction-to-cartography-learngis.hub.arcgis.com ____________________________________ Follow us on Social Media! Twitter: https://twitter.com/Esri Facebook: https://facebook.com/EsriGIS LinkedIn: https://www.linkedin.com/company/esri Instagram: https://www.instagram.com/esrigram TikTok: https://www.tiktok.com/@esri_maps The Science of Where: http://www.esri.com
https://wn.com/Introduction_To_Cartography
The biggest mistakes in mapmaking history - Kayla Wolf
4:59

The biggest mistakes in mapmaking history - Kayla Wolf

  • Order:
  • Duration: 4:59
  • Uploaded Date: 10 May 2022
  • views: 999998
Travel through the history of mapmaking and discover what big mistakes cartographers made about the world’s geography. -- For thousands of years, people made both functional maps and what are known as cosmographies, illustrating the earth and its position in the cosmos, often including constellations, gods, and mythic locations. These maps were meant to depict the world's geography, but weren't necessarily useful for navigation and contained some glaring mistakes. Kayla Wolf shares mapmaking’s biggest blunders. Lesson by Kayla Wolf, directed by Serin İnan, Kozmonot Animation Studio. Tabula Rogeriana image from Konrad Miller: https://bit.ly/KonradMiller Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop ---------------------------------------------- Connect With Us ---------------------------------------------- Sign up for our newsletter: http://bit.ly/TEDEdNewsletter Follow us on Facebook: http://bit.ly/TEDEdFacebook Find us on Twitter: http://bit.ly/TEDEdTwitter Peep us on Instagram: http://bit.ly/TEDEdInstagram ---------------------------------------------- Keep Learning ---------------------------------------------- View full lesson: https://ed.ted.com/lessons/the-biggest-mistakes-in-mapmaking-history-kayla-wolf Dig deeper with additional resources: https://ed.ted.com/lessons/the-biggest-mistakes-in-mapmaking-history-kayla-wolf#digdeeper Animator's website: https://www.kozmonot.tv ---------------------------------------------- Thank you so much to our patrons for your support! Without you this video would not be possible! Sid, Kent Logan, Alexandra Panzer, John Hellmann, Poompak Meephian, Chuck Wofford, Daniel Erickson, frank goto, Jayson Hauschild, J D Wallace, Marq Short, Chen Jun Xiang, Adam Pagan, Paul Schultz, Behzad Farhanieh, Anders Sørheim, Wes Winn, Conder Shou, BrushReads, Matt Kennedy, Jonah Dobbs, ntiger, Noname, Hansan Hu, Cameron Burkle, Dhanwanth Varadhan, David D, Zuko Gameplays, Jonathan Bates JBZ, Aria Smith, Mac Hyney, Keith Ellison, robin valero walters, Camehira, Lynne Truesdale, Gatsby Dkdc, Matthew Neal, Jayson Gasper Ayson, Maxwell Ramsby, Dmitry Yuryev, Denis Chon, Julian Oberhofer, Monte Carroll, Eddy, Jay M, Constantino Victor Delgado, Andrea Galvagni, Andrew Tweddle, Laurel-Ann Rice and Fernando A. Endo.
https://wn.com/The_Biggest_Mistakes_In_Mapmaking_History_Kayla_Wolf
Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data science
11:39

Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data science

  • Order:
  • Duration: 11:39
  • Uploaded Date: 15 Jan 2022
  • views: 5717
In this video, I will teach you about the principles of cartographic symbolization. If you are interested in making effective maps for communicating different forms of data using geographic information system software (GIS), this video is for you! In this video, I cover two important topics: (1) data measurement principles as they apply to mapping and (2) visual variables which are the graphical forms that you use for encoding data on maps. Additional Resources: Slides for this video can be downloaded from: http://gisfordisastermanagement.com/youtube/ If you liked this and other videos on the geographic information science channel, please like these videos, leave comments, or subscribe to this channel so you can stay informed of new videos. Subscribe to this channel: https://www.youtube.com/user/GIScienceRIT/?sub_confirmation=1 Also, feel free to contact me if you have any questions, I love hearing from the YouTube community. Thanks for stopping by! Brian Tomaszewski, Ph.D. @bangeobrian http://gisfordisastermanagement.com/ https://www.linkedin.com/in/brian-tomaszewski-452b1387/
https://wn.com/Principles_Of_Cartographic_Symbolization_Maps_Gis_Visualization_Cartography_Data_Science
What is a Map? Crash Course Geography #2
10:30

What is a Map? Crash Course Geography #2

  • Order:
  • Duration: 10:30
  • Uploaded Date: 14 Dec 2020
  • views: 651441
From navigating a cross-country road trip (or just finding the nearest coffee shop), to analyzing election results, maps play a huge role in how we interpret the world! Today, we're going to talk about the differences between reference maps and thematic maps, take a closer look at how projections play a part in how we perceive maps, and discuss the role of the cartographer (or map maker) in all of this. Maps are incredibly powerful tools and play a crucial role in how we understand the world, but they are also made by people, so it is our job to think critically about how these stories are being presented to us. Watch our videos and review your learning with the Crash Course App! Download here for Apple Devices: https://apple.co/3d4eyZo Download here for Android Devices: https://bit.ly/2SrDulJ Crash Course is on Patreon! You can support us directly by signing up at http://www.patreon.com/crashcourse Thanks to the following patrons for their generous monthly contributions that help keep Crash Course free for everyone forever: Eric Prestemon, Mark, DAVID MORTON HUDSON, Perry Joyce, Isaac Liu, Scott Harrison, Mark & Susan Billian, Junrong Eric Zhu, Alan Bridgeman, Jennifer Smith, Matt Curls, Tim Kwist, Jonathan Zbikowski, Jennifer Killen, Sarah & Nathan Catchings, Brandon Westmoreland, team dorsey, Trevin Beattie, Eric Koslow, Indika Siriwardena, Khaled El Shalakany, Shawn Arnold, Siobhán, Ken Penttinen, Nathan Taylor, William McGraw, Jirat, Brian Thomas Gossett, Ian Dundore, Jason A Saslow, Jessica Wode, Caleb Weeks __ Want to find Crash Course elsewhere on the internet? Facebook - http://www.facebook.com/YouTubeCrashCourse Twitter - http://www.twitter.com/TheCrashCourse Tumblr - http://thecrashcourse.tumblr.com Support Crash Course on Patreon: http://patreon.com/crashcourse CC Kids: http://www.youtube.com/crashcoursekids
https://wn.com/What_Is_A_Map_Crash_Course_Geography_2
How We Mapped the World Before Satellites
12:11

How We Mapped the World Before Satellites

  • Order:
  • Duration: 12:11
  • Uploaded Date: 27 Jun 2021
  • views: 368693
The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https://skl.sh/khanubis06211 How did we make maps before we had planes and satellites to look at our world? Turns out some of the solutions were even more creative than I would have thought... MUSIC: “Unchartered” by Taomito* “In the Horizon” by Taomito* “Wing of Fire” by Ecovillage* “Namaste” by Audionautix “Genie’s Bane” by Deskant* “Globetrotter” by Adriel Fair* “When I Do This” by Esme Cruz* “Summer by Bensound (*via EpidemicSound) 👕 MERCH! https://crowdmade.com/collections/khanubis 📖 SOURCES: https://www.britannica.com/science/map/Maps-and-geography-in-the-ancient-world https://www.gislounge.com/mapping-through-the-ages/ https://www.thoughtco.com/the-history-of-cartography-1435696 https://www.icsm.gov.au/education/fundamentals-mapping/history-mapping https://en.wikipedia.org/wiki/History_of_longitude CONTACT: contact@khanubis.tv SPONSORSHIP INQUIRIES: khanubis@thoughtleaders.io 👥 JOIN THE DISCORD SERVER! https://discord.gg/4FZZJkXCGY THANK YOU, BRONZE AGE+ PATRONS! Adri Cortesia, Anonymous Freak, Nif Lindsay, Rebanics, Larry Burch, Tobi Burch-Rates, Up and Atom https://www.patreon.com/khanubis Or make one-time payments at paypal.me/khanubis http://www.khanubis.tv
https://wn.com/How_We_Mapped_The_World_Before_Satellites
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Introduction to Cartography
    49:01
    Introduction to Cartographyremove from playlist
  • Lesson 3 - Part 1: Introduction to Cartography
    3:52
    Lesson 3 - Part 1: Introduction to Cartographyremove from playlist
  • A Brief History of Cartography and Maps
    7:04
    A Brief History of Cartography and Mapsremove from playlist
  • Cartography, Projections and Scales
    9:58
    Cartography, Projections and Scalesremove from playlist
  • Introduction to Cartography
    1:33
    Introduction to Cartographyremove from playlist
  • The biggest mistakes in mapmaking history - Kayla Wolf
    4:59
    The biggest mistakes in mapmaking history - Kayla Wolfremove from playlist
  • Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data science
    11:39
    Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data scienceremove from playlist
  • What is a Map? Crash Course Geography #2
    10:30
    What is a Map? Crash Course Geography #2remove from playlist
  • How We Mapped the World Before Satellites
    12:11
    How We Mapped the World Before Satellitesremove from playlist
PLAYLIST TIME:

NGA Explains: What is Cartography?

NGA explains the science of cartography.
2:25
NGA Explains: What is Cartography?
NGA explains the science of cartography.
published: 03 Nov 2020
Play in Full Screen
49:01
Introduction to Cartography
Explores the theory of maps, map elements, different types of maps, and the how geographic...
published: 13 Feb 2023
Play in Full Screen
3:52
Lesson 3 - Part 1: Introduction to Cartography
Lesson 3 - Introduces viewers to Cartography and the science/art of making maps Part 1 - ...
published: 28 Jun 2015
Play in Full Screen
7:04
A Brief History of Cartography and Maps
Maps have always changed for humans throughout history, we are one of the few you have see...
published: 23 Jan 2016
Play in Full Screen
9:58
Cartography, Projections and Scales
This video explains the basic concepts of cartography, maps and charts; such as the most u...
published: 12 Dec 2021
Play in Full Screen
1:33
Introduction to Cartography
Introduction to Cartography is a self-directed course from Learn ArcGIS. It's a curated se...
published: 24 Jan 2023
Play in Full Screen
4:59
The biggest mistakes in mapmaking history - Kayla Wolf
Travel through the history of mapmaking and discover what big mistakes cartographers made ...
published: 10 May 2022
Play in Full Screen
11:39
Principles of Cartographic Symbolization #maps #GIS #visualization #cartography #data science
In this video, I will teach you about the principles of cartographic symbolization. If you...
published: 15 Jan 2022
Play in Full Screen
10:30
What is a Map? Crash Course Geography #2
From navigating a cross-country road trip (or just finding the nearest coffee shop), to an...
published: 14 Dec 2020
Play in Full Screen
12:11
How We Mapped the World Before Satellites
The first 1,000 people to use this link will get a 1 month free trial of Skillshare: https...
published: 27 Jun 2021
Play in Full Screen
'); } 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: cartography

Edit

Reconstructing the obvious truth of Gaza: A cartography of genocide

Daily Sabah 06 May 2025
Those who cannot even comprehend, let alone accept with ease, a reality in which they personally experience what the people of Gaza have been experiencing over the course of a geno ....
Edit

Newly Purchased Ultra-Modern Surveillance Aircraft Shows Off Its Capabilities

Hungary Today 26 Apr 2025
Last week, the recently acquired Diamond Aircraft DA62 MPP SurveyStar aircraft of the HM Zr�nyi Nonprofit Kft ... All this creates an opportunity for professionals to develop the State Aerial Photography Capability. Photo. lhsn.hu/Horv�th �d�m ... Photo ... Photo.
  • 1
×