Skip to content

Instantly share code, notes, and snippets.

View andy-esch's full-sized avatar
🌳

Andy Eschbacher andy-esch

🌳
View GitHub Profile
@andy-esch
andy-esch / README.md
Last active December 16, 2016 17:44
TechChange Talk Notes -- Dec 8, 2016

TechChange: Technology for Data Visualization

Basics

  • Use the CARTO Builder for easy visualization of data
    • Put your data on the map
    • Build dashboards to interact with data
    • Dynamically updating maps (sync'd from realtime data)
  • We have free accounts: https://carto.com/signup
@andy-esch
andy-esch / README.md
Last active April 1, 2021 08:45
Explore time and space with SQL and PostGIS
@andy-esch
andy-esch / README.md
Last active November 2, 2016 19:33
MIT Workshop -- Nov 2 2016
@andy-esch
andy-esch / README.md
Last active October 15, 2016 00:10
Data Science Academy -- Oct 14, 2016

Step 1: Importing a Dataset and Creating a Map

Import the files subwaystations and starbucks_locations into your Carto account by drag and dropping them into the Dataset Dashboard, or pasting the URL into the Import dialogue

show little boxes for links to the files

  • Show how easy is to import files into CARTO! Explain the viewer the wide diversity of geodata supported in CARTO during the importing.
@andy-esch
andy-esch / README.md
Created September 6, 2016 21:58
hacks/hackers demo day

Hacks/Hackers Demo Day

Sept 6, 2016

Data Observatory

Eviction

Data sent from Erin at Anti-eviction Mapping Project:

@andy-esch
andy-esch / README.md
Last active September 12, 2016 08:42
cartocamp super workshop

Intro to the CARTO Builder

Andy Eschbacher, andy@carto.com, @MrEPhysics

Aug 18, 2016

Goal: all users will be able to effectively navigate the CARTO Builder user interface for basic map and analysis creation which can then be shared out.

Getting Setup

@andy-esch
andy-esch / README.md
Last active June 9, 2016 16:55
Data Observatory Webinar snippets

Data From Nothing

Gathering data from nothing

1. Get boundaries, insert into appropriate table

INSERT INTO baltimore_webinar_demo(the_geom, name)
SELECT *
FROM OBS_GetBoundariesByPointAndRadius(
@andy-esch
andy-esch / README.md
Created May 27, 2016 16:37
SQL used in blog post on congressional districts

Get district boundaries

INSERT INTO us_congressional_districts(the_geom, geoid)
SELECT the_geom, geom_refs
  FROM cdb_observatory.OBS_GetBoundariesByGeometry(
         ST_MakeEnvelope(-179.5, 13.4, -42.4, 74.4, 4326),
         'us.census.tiger.congressional_district')
@andy-esch
andy-esch / README.md
Last active May 18, 2016 19:51
baltimore economic data through the data observatory

Baltimore Data through the Data Observatory

See map

Step 1

Create an empty table, rename it to baltimore_economic_data

Get Boundaries, filter by Baltimore's FIPS (24510)