Presentation slides
Three.js
{ | |
"color_inactive_tabs": true, | |
"color_scheme": "Packages/Theme - Afterglow/Afterglow.tmTheme", | |
"font_size": 10, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 4, | |
"tabs_medium": true, |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# Convert movie frames to jpgs | |
ffmpeg -i {{MOVIE_FILE}} -r 5 -qscale 0 '{{OUTPUT_FILENAME}}-%03d.jpg' | |
# Convert jpgs to gif | |
convert -delay 10 -loop 0 -layers Optimize +map frames/*.jpg frames/{{OUTPUT_FILENAME}}.gif |
Presentation slides
Three.js
Exploring Gale Crater - Los Angeles Times
http://graphics.latimes.com/mars-gale-crater-vr/
And how we did it
<html> | |
<head> | |
<title>My first three.js app</title> | |
<style> | |
body { margin: 0; } | |
canvas { width: 100%; height: 100% } | |
</style> | |
</head> | |
<body> | |
<!-- This will be correct if you used npm to install three --> |
Mapshaper is a javascript library for editing GIS data formats including GeoJSON, TopoJSON, Shapefiles and others. It's easier to install and can replace some of the functionality of ogr2ogr, allowing for integration into node-based workflows.
There's also an online gui at mapshaper.org you can use.