Skip to content

Instantly share code, notes, and snippets.

View talllguy's full-sized avatar
🎯
Focusing

Elliott Plack talllguy

🎯
Focusing
View GitHub Profile
@talllguy
talllguy / baltimore-bicycle-facilities-v4.geojson
Last active July 12, 2018 03:06
OSM derived bicycle facilities in Baltimore via http://overpass-turbo.eu/s/A7K
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@talllguy
talllguy / 2013-baltimore-dot-bicycle-parking.geojson
Created June 1, 2018 17:52
KMZ converted to GeoJSON of a dataset last updated 2013 of Baltimore City DOT Bicycle Parking
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@talllguy
talllguy / arcade-append.md
Last active May 9, 2018 17:43
Various useful ArcGIS Arcade expressions for appending values to simulate comma separated Survey123 entries

Arcade Appending

Why

These useful ArcGIS Arcade expressions are for appending values to simulate comma separated Survey123 entries. These particular expressions include an SQL statement to select from a free-text comment that needs to be converted to the Survey123-like select_multiple format.

The data includes roughly 600 entries prior to the addition of a select_multiple that aims to simplify data entry. While that change has been a dashing success, prior entries do not include the normalized data. These edits look for keywords in the comments and convert them to comma separated values.

Clearing

<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
@talllguy
talllguy / Best-of-Canton-Neighbors.md
Last active March 31, 2018 22:11
Best of the Canton Neighbors Facebook group

Best of Canton Neighbors

A collection of the top posts from Canton Neighbors, the community Facebook group for Canton, a neighborhood in Baltimore, Maryland. Italicized posts are no longer available.

2018

  1. Where's my table
  2. Hope she was worth it

2017

@talllguy
talllguy / sebaltnhood.geojson
Last active September 22, 2017 13:03
Southeast Baltimore Neighborhoods
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@talllguy
talllguy / outlook.txt
Last active June 21, 2017 20:21
An HTML Tidy 5.4.0 config file for dealing with exported email from MS Outlook 2016
// MS Outlook HTML Tidy scrubbing
// by @talllguy
// 21 Jun 2017
// Instructions: save this file somewhere and run tidy -config <path>outlook.txt
word-2000: yes // for general removal of MS crap tags
bare: yes
clean: yes
drop-empty-paras: yes
drop-proprietary-attributes: yes
join-styles: yes
@talllguy
talllguy / keybase.md
Created March 16, 2017 00:54
setting up keybase

Keybase proof

I hereby claim:

  • I am talllguy on github.
  • I am elliottplack (https://keybase.io/elliottplack) on keybase.
  • I have a public key whose fingerprint is 4128 24B4 0400 5D5A 4203 FCA3 2DA3 7B14 6A39 6C45

To claim this, I am signing this object:

@talllguy
talllguy / MaAndPaRR.geojson
Last active March 12, 2017 17:06
The historic route of the Maryland & Pennsylvania Railroad
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@talllguy
talllguy / wetlandsmapcode.py
Last active January 23, 2017 20:14
python to do a field calculation in Esri ArcMAP for wetland code simplification
def Reclass(Class):
if (Class.startswith('PFO')):
return 'PFO'
elif (Class.startswith('PSS')):
return 'PSS'
elif (Class.startswith('PEM')):
return 'PEM'
elif (Class.startswith('PUB')):
return 'PUB'
elif (Class.startswith('PAB')):