- Earth at night <- from living atlas (disabled options right menu)
- Vuelo AMS 1956 <- from new map viewer (change basemap labels & network filter by
tile) - Grocery <- from new map viewer
Coding demos:
| // Script to get video titles and links from a YT playlist | |
| // https://www.youtube.com/playlist?list=PLAYLIST_ID | |
| data = [] | |
| function youtube_parser(url){ | |
| var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/; | |
| var match = url.match(regExp); | |
| return (match&&match[7].length==11)? match[7] : false; | |
| } | |
| document.querySelectorAll("a#video-title").forEach((el,i) => { | |
| let videoId = youtube_parser(el.href) |
tile)Coding demos:
Topics:
Find all talks on this Youtube playlist
| <gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" version="1.1" creator="dji-srt-viewer"><metadata/><trk><name>DJI_0063</name><desc>source=dji-srt-parser | |
| name=DJI_0063 | |
| FRAMECNT=1 | |
| DIFFTIME=33 | |
| ISO=100 | |
| SHUTTER=1000 | |
| FNUM=2.8 | |
| EV=-0.3 | |
| CT=5037 | |
| FOCAL_LEN=280 |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta | |
| http-equiv="X-UA-Compatible" | |
| content="IE=edge" | |
| > | |
| <meta |
| require([ | |
| ... | |
| ], | |
| function( | |
| ... | |
| ){ | |
| on(dojo.byId("pintaYQuery"), "click", function (){ | |
| tb = new Draw(map); |
| YEAR;NATIONALITY;AMOUNT;; | |
| 2010;ALEMANIA;1;; | |
| 2010;ARGELIA;11;; | |
| 2010;ARGENTINA;29;; | |
| 2010;BOLIVIA;144;; | |
| 2010;BRASIL;23;; | |
| 2010;BURKINA FASO;2;; | |
| 2010;CHILE;16;; | |
| 2010;CHINA;5;; | |
| 2010;COLOMBIA;237;; |
| <html> | |
| <head> | |
| <style>#mapDiv,body,html{width:100%; height:400px;margin:0;padding:0}</style> | |
| </head> | |
| <body> | |
| <h1>Search places in ArcGIS</h1> | |
| <div id="mapDiv"></div> | |
| <script type="module"> | |
| import MapView from "https://js.arcgis.com/4.18/@arcgis/core/views/MapView.js"; | |
| import Locator from "https://js.arcgis.com/4.18/@arcgis/core/tasks/Locator.js"; |