{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Enrich Using Standard Geography" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from arcgis.features import GeoAccessor\n", "from arcgis.gis import GIS\n", "\n", "from arcgis.geoenrichment import Country" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create a GIS Object" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "GIS @ https://baqa.mapsqa.arcgis.com" ], "text/plain": [ "GIS @ https://baqa.mapsqa.arcgis.com version:10.2" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "gis = GIS(profile='baqa')\n", "\n", "gis" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create Country" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "usa = Country('usa', gis=gis)\n", "\n", "usa" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Discover Available Geographic Levels" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
level_namesingular_nameplural_namealiaslevel_idadmin_level
0block_groupsBlock GroupBlock GroupsBlock GroupsUS.BlockGroups
1tractsCensus TractCensus TractsCensus TractsUS.Tracts
2placesPlacePlacesCities and Towns (Places)US.Places
3zip5ZIP CodeZIP CodesZIP CodesUS.ZIP5Admin4
4csdCounty SubdivisionCounty SubdivisionsCounty SubdivisionsUS.CSD
5countiesCountyCountiesCountiesUS.CountiesAdmin3
6cbsaCBSACBSAsCBSAsUS.CBSA
7cdCongressional DistrictCongressional DistrictsCongressional DistrictsUS.CD
8dmaDMADMAsDMAsUS.DMA
9statesStateStatesStatesUS.StatesAdmin2
10whole_usaUnited States of AmericaUnited States of AmericaEntire CountryUS.WholeUSAAdmin1
\n", "
" ], "text/plain": [ " level_name singular_name plural_name \\\n", "0 block_groups Block Group Block Groups \n", "1 tracts Census Tract Census Tracts \n", "2 places Place Places \n", "3 zip5 ZIP Code ZIP Codes \n", "4 csd County Subdivision County Subdivisions \n", "5 counties County Counties \n", "6 cbsa CBSA CBSAs \n", "7 cd Congressional District Congressional Districts \n", "8 dma DMA DMAs \n", "9 states State States \n", "10 whole_usa United States of America United States of America \n", "\n", " alias level_id admin_level \n", "0 Block Groups US.BlockGroups \n", "1 Census Tracts US.Tracts \n", "2 Cities and Towns (Places) US.Places \n", "3 ZIP Codes US.ZIP5 Admin4 \n", "4 County Subdivisions US.CSD \n", "5 Counties US.Counties Admin3 \n", "6 CBSAs US.CBSA \n", "7 Congressional Districts US.CD \n", "8 DMAs US.DMA \n", "9 States US.States Admin2 \n", "10 Entire Country US.WholeUSA Admin1 " ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "usa.levels" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Enrich a County by FIPS" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
std_geography_levelstd_geography_namestd_geography_idsource_countryaggregation_methodpopulation_to_polygon_size_ratingapportionment_confidencehas_datatotpopSHAPE
0US.CountiesAlameda County06001USAQuery:US.Counties2.1912.57611707142.0{\"rings\": [[[-122.27036220796694, 37.904395965...
\n", "
" ], "text/plain": [ " std_geography_level std_geography_name std_geography_id source_country \\\n", "0 US.Counties Alameda County 06001 USA \n", "\n", " aggregation_method population_to_polygon_size_rating \\\n", "0 Query:US.Counties 2.191 \n", "\n", " apportionment_confidence has_data totpop \\\n", "0 2.576 1 1707142.0 \n", "\n", " SHAPE \n", "0 {\"rings\": [[[-122.27036220796694, 37.904395965... " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "usa.enrich(['06001'], ['KeyGlobalFacts.TOTPOP'], standard_geography_level='counties')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.12" } }, "nbformat": 4, "nbformat_minor": 4 }