Skip to content

Instantly share code, notes, and snippets.

View chryss's full-sized avatar

Chris Waigl chryss

View GitHub Profile
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@chryss
chryss / index.html
Created November 10, 2013 02:38
Scatterplot
<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<script src='http://ramnathv.github.io/rCharts/libraries/widgets/polycharts/js/polychart2.standalone.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
from osgeo import gdal
arys = []
ds = gdal.Open('sample.tif', gdal.GA_ReadOnly)
for i in xrange(1, ds.RasterCount+1):
arys.append(ds.GetRasterBand(i).ReadAsArray())
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@chryss
chryss / Healy Thermal Scrapbook 1
Created November 21, 2013 19:04
Some plots of Landsat thermal imagery over the Nenana coalfields, using pygaarst
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@chryss
chryss / gist:7593127
Last active October 21, 2019 15:33
pygaarst doc snippets 1 - how to open and plot VIIRS HDF5 and GeoTIFF data, including plotting on a map.
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@chryss
chryss / gist:7638837
Last active December 29, 2015 07:49
Python 3 testbed
This file has been truncated, but you can view the full file.
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
@chryss
chryss / gist:7815051
Created December 5, 2013 22:20
Knik 200 Dog Sled Race Trail GeoJSON
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@chryss
chryss / puppyweights1.r
Last active January 1, 2016 04:29
The puppy code
require(RCurl)
require(reshape2)
require(ggplot2)
puppies <- getURL("https://docs.google.com/spreadsheet/pub?key=0AtKrmILNPprEdEY4MFA5SWt5THRyYlB4cnhUNkxuOVE&single=true&gid=3&output=csv")
puppydat <- read.csv(textConnection(puppies), header=TRUE)
puppyflat <- melt(puppydat)
p <- ggplot(puppyflat, aes(X, value, color=factor(variable), group=variable))
import json
import numpy as np
from osgeo import gdal, gdal_array
typemap = {}
typenames = {}
for name in dir(np):
obj = getattr(np, name)
if hasattr(obj, 'dtype'):
try: