Skip to content

Instantly share code, notes, and snippets.

View sbuss's full-sized avatar

Steven Buss sbuss

View GitHub Profile
@mroberts444
mroberts444 / hist_perimeters.py
Created September 28, 2020 06:03
CA Fire Perimeters
import geopandas as gpd
import pandas as pd
import fiona
import sys
import numpy as np
import folium
from folium.plugins import Search
#data from https://frap.fire.ca.gov/mapping/gis-data/
#create a list of layers within a file geodatabase
@ianblenke
ianblenke / myapp.tf
Last active August 29, 2015 14:16
An older translation of the Deis CloudFormation template into TerraForm syntax
variable "aws_access_key" {
description = "The AWS_ACCESS_KEY_ID to use"
}
variable "aws_secret_key" {
description = "The AWS_SECRET_ACCESS_KEY to use"
}
provider "aws" {
access_key = "${var.aws_access_key}"