We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_CEJST()
Something like this (see Cumulative Impacts notebook):
import zipfile, requests, io file = 'https://static-data-screeningtool.geoplatform.gov/data-versions/1.0/data/score/downloadable/1.0-shapefile-codebook.zip' r = requests.get(file) z = zipfile.ZipFile(io.BytesIO(r.content)) z.extractall("CEJST") z = zipfile.ZipFile("/content/CEJST/usa.zip") z.extractall("CEJST") cejst = geopandas.read_file("/content/CEJST/usa.shp", mask=county) # interactive widget selection here, to select the CEJST variable to map map = choropleth(cejst, "DSF_PFS", key_id="GEOID10") return cejst, map
See EJScreen class in watershed notebook for example of interactive widget selection
EJScreen
The text was updated successfully, but these errors were encountered:
ericnost
No branches or pull requests
Something like this (see Cumulative Impacts notebook):
See
EJScreen
class in watershed notebook for example of interactive widget selectionThe text was updated successfully, but these errors were encountered: