This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import collections | |
# Let's define a global dispatch table for the 8 different possible neighbors | |
# clockwise starting top-left: tl, t, tr, r, br, b, bl, l. | |
# The target index only depends on the number of rows and the start index jj | |
# As we won't know beforehand which functions to use for a given start index, | |
# we make them all dependent on both jj and n | |
neighbordispatch = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
def dosomething(someinput): | |
pass | |
def main(): | |
parser = argparse.ArgumentParser() | |
parser.add_argument("infilepath") | |
args = parser.parse_args() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
evaluatehfdi_debug.py | |
Debugging scikit-learn Gaussian Mixture Model parameter choice. | |
Created by Chris Waigl on 2014-05-13. | |
Copyright (c) 2014 Christine F. Waigl. MIT License. | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# clip_usgs_to_shape.sh | |
# Clip individual band files from USGS-distributed remote-senisng images | |
# to extent of polygon provided in a shapefile, using the GDAL command line | |
# tools. | |
# | |
# Chris Waigl, 2014-04-15 | |
# | |
# Input: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |