This file has been truncated, but you can view the full file.
This file contains hidden or 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
{"total_rows":2934,"offset":0,"rows":[ | |
{"id":"1cc11d2ed6943a78eceeb9ba47da20ff","key":null,"feature":{"_id":"1cc11d2ed6943a78eceeb9ba47da20ff","_rev":"2-e985f13310deabe70d8f58de1b6ecea7","numunits":null,"assetid":"5220-0001777","bpfund_":null,"finish":null,"numspaces":null,"covered_":null,"mounting":null,"imagepath":null,"gid":"1000","bikeparkty":"5220","bplevel":null,"bpstyle_":"STAPLE - Staple","geometry":{"coordinates":[-122.675740727023,45.5202579932798],"type":"Point"},"locationid":"BF56722","rotation":null}}, | |
{"id":"1cc11d2ed6943a78eceeb9ba47da2a3c","key":null,"feature":{"_id":"1cc11d2ed6943a78eceeb9ba47da2a3c","_rev":"2-88a393cdeda2b6ff4070862d84fe0e6c","numunits":null,"assetid":"5220-0001776","bpfund_":null,"finish":null,"numspaces":null,"covered_":null,"mounting":null,"imagepath":null,"gid":"999","bikeparkty":"5220","bplevel":null,"bpstyle_":"STAPLE - Staple","geometry":{"coordinates":[-122.675814986747,45.5201159765159],"type":"Point"},"locationid":"BF56722","rotation":null}}, | |
{"id":"1cc11d2ed6943a7 |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Donut Chart</title> | |
<script src="http://vis.stanford.edu/protovis/protovis-r3.2.js"></script> | |
<script src="http://d3js.org/d3.v2.js"></script> | |
<style> | |
body { | |
width:950px; |
This file contains hidden or 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
// ==UserScript== | |
// @name ESPN Fantasy Basketball Team Totals | |
// @namespace http://joeahand.com/ | |
// @version 0.1 | |
// @description Totals the projected weekly stats for current lineup | |
// @include http://games.espn.go.com/fba/clubhouse?* | |
// @copyright 2014+, Joe Hand | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js |
This file contains hidden or 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
// ==UserScript== | |
// @name ESPN Fantasy Basketball Team Totals | |
// @namespace http://joeahand.com/ | |
// @version 0.1 | |
// @description Totals the projected weekly stats for current lineup | |
// @include http://games.espn.go.com/fba/clubhouse?* | |
// @copyright 2014+, Joe Hand | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js |
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 hidden or 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
""" | |
Shapefile Filters | |
~~~~~~~~~ | |
:copyright: (c) 2015 by Joe Hand, Santa Fe Institute. | |
:license: MIT | |
""" | |
import ntpath | |
import os | |
import re |
This file contains hidden or 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
for filename in *.json; do ogr2ogr -f "GEOJSON" -s_srs CapeTown.prj -t_srs EPSG:4326 "${filename%.*}_proj.json" "${filename}"; done | |
for filename in *_proj.json; do topojson -p interior,road -o "${filename%_proj.*}.topo.json" "${filename}" ; done |
This file contains hidden or 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
var Hyperdrive = require('hyperdrive') | |
var Level = require('level') | |
var Swarm = require('discovery-swarm') | |
var swarmDefaults = require('datland-swarm-defaults') | |
// run this like: node thisfile.js 4c325f7874b4070blahblahetc | |
var link = new Buffer(process.argv[2], 'hex') | |
var LOCAL_PORT = Number(process.argv[3]) || 3282 // specify port or use 3282 | |
var db = Level('./dat.db') |
This file contains hidden or 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
var Hyperdrive = require('hyperdrive') | |
var Level = require('level') | |
var Swarm = require('discovery-swarm') | |
var swarmDefaults = require('datland-swarm-defaults') | |
var walker = require('folder-walker') | |
var each = require('stream-each') | |
var db = Level('./dat.db') | |
var drive = Hyperdrive(db) |
This file contains hidden or 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
var Hyperdrive = require('hyperdrive') | |
var Level = require('level') | |
var Swarm = require('discovery-swarm') | |
var swarmDefaults = require('datland-swarm-defaults') | |
var walker = require('folder-walker') | |
var each = require('stream-each') | |
var db = Level('./dat.db') | |
var drive = Hyperdrive(db) |
OlderNewer