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
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}" |
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 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 |