{ "currentVersion": 11.3, "cimVersion": "3.3.0", "id": 28, "name": "Households and Population", "type": "Feature Layer", "description": "
The information included is U.S. Census Bureau data from the 2020 decennial Census, and summarized by Census blockgroups. Tracts are the largest Census defined geographic boundary, which are made up of blockgroups, and which in turn are made up of blocks (the smallest geographic boundary). Data included for each blockgroup is a summary of information released as part of the redistricting data, and is somewhat limited. Data included in this release are basic counts, race, and general age group (youths or adults). This information does not include relationships, sex, or age groups, and which may be added in the future.<\/SPAN><\/P> This data was compiled directly from U.S. Census Bureau information using R Statistical software, and then projected into the same coordinate system as other Ada County data (NAD_1983_Transverse_Mercator.<\/SPAN><\/P> The following 2020 Decennial Census redistricting key ID's are used, along with their named field in this dataset, and a description.<\/SPAN><\/P> _KEY_ID_ | _Named_, Description<\/SPAN><\/P><\/LI><\/UL> H1_001N | T_H_All, Housing All<\/SPAN><\/P><\/LI> H1_002N | T_H_OCC, Housing Occupied<\/SPAN><\/P><\/LI> H1_003N | T_H_UOC, Housing Not Occupied<\/SPAN><\/P><\/LI> P1_001N | T_P_ALL, Total Population<\/SPAN><\/P><\/LI> P3_001N | T_P_18p, Total Population, 18+<\/SPAN><\/P><\/LI> P1_002N | T_1Race, Population of one race<\/SPAN><\/P><\/LI> P1_009N | T_2Race, Population of two or more races<\/SPAN><\/P><\/LI> P1_003N | T_R_Wht, White alone<\/SPAN><\/P><\/LI> P1_004N | T_R_Blk, Black or African American alone<\/SPAN><\/P><\/LI> P1_005N | T_R_NTV, American Indian and Alaska Native alone<\/SPAN><\/P><\/LI> P1_006N | T_R_ASN, Asian alone<\/SPAN><\/P><\/LI> P1_007N | T_R_ISL, Native Hawaiian and Other Pacific Islander alone<\/SPAN><\/P><\/LI> P1_008N | T_R_OTR, Some Other Race alone<\/SPAN><\/P><\/LI> P2_002N | T_R_LAT, Hispanic or Latino<\/SPAN><\/P><\/LI> P2_003N | T_R_NOT, Not Hispanic or Latino<\/SPAN><\/P><\/LI> P5_002N | T_I_ALL, Total Institutionalized population<\/SPAN><\/P><\/LI> P5_007N | T_I_NON, Total Noninstitutionalized population<\/SPAN><\/P><\/LI> P5_003N | T_I_COR, Correctional facilities for adults<\/SPAN><\/P><\/LI> P5_004N | T_I_JUV, Juvenile facilities<\/SPAN><\/P><\/LI> P5_005N | T_I_NUR, Nursing facilities/Skilled-nursing facilities<\/SPAN><\/P><\/LI> P5_006N | T_I_OTI, Other institutional facilities<\/SPAN><\/P><\/LI> P5_008N | T_I_EDU, College/University student housing<\/SPAN><\/P><\/LI> P5_009N | T_I_MIT, Military quarters<\/SPAN><\/P><\/LI> P5_010N | T_I_OTN, Other noninstitutional facilities<\/SPAN><\/P><\/LI><\/UL> The following fields were calculated using the fields above. Text after hashtags are descriptions.<\/SPAN><\/P> TV_tracts$t_adult = (TV_tracts$T_P_18p) # create new population total adults<\/SPAN><\/P><\/LI> TV_tracts$p_adult = (TV_tracts$T_P_18p / TV_tracts$T_P_ALL) # calculate percent adults<\/SPAN><\/P><\/LI> TV_tracts$t_kids_ = (TV_tracts$T_P_ALL - TV_tracts$T_P_18p) # calculate total population youth<\/SPAN><\/P><\/LI> TV_tracts$p_kids_ = (TV_tracts$t_kids_ / TV_tracts$T_P_ALL) # calculate percent youth<\/SPAN><\/P><\/LI><\/UL> TV_tracts$P_white = (TV_tracts$T_R_Wht / TV_tracts$T_P_ALL) # percent white<\/SPAN><\/P><\/LI> TV_tracts$P_nwhit = (TV_tracts$T_P_ALL - TV_tracts$T_R_Wht) / TV_tracts$T_P_ALL # percent not white<\/SPAN><\/P><\/LI> TV_tracts$P_latin = (TV_tracts$T_R_LAT / TV_tracts$T_P_ALL) # percent latino/hispanic<\/SPAN><\/P><\/LI> TV_tracts$P_nlati = (TV_tracts$T_R_NOT / TV_tracts$T_P_ALL) # percent not latino/hispanic<\/SPAN><\/P><\/LI> TV_tracts$P_black = (TV_tracts$T_R_Blk / TV_tracts$T_P_ALL) # percent african american<\/SPAN><\/P><\/LI> TV_tracts$P_natve = (TV_tracts$T_R_NTV / TV_tracts$T_P_ALL) # percent american indian / alaskan native<\/SPAN><\/P><\/LI> TV_tracts$P_asian = (TV_tracts$T_R_ASN / TV_tracts$T_P_ALL) # percent asian<\/SPAN><\/P><\/LI> TV_tracts$P_isle_ = (TV_tracts$T_R_ISL / TV_tracts$T_P_ALL) # percent islander<\/SPAN><\/P><\/LI> TV_tracts$P_other = (TV_tracts$T_R_OTR / TV_tracts$T_P_ALL) # percent other race<\/SPAN><\/P><\/LI> TV_tracts$P_multi = (TV_tracts$T_2Race / TV_tracts$T_P_ALL) # percent two or more race<\/SPAN><\/P><\/LI><\/UL> convert_SQM = 4046.86 # Census area data is in square meters<\/SPAN><\/P><\/LI><\/UL> TV_tracts$bk_AC_N = TV_tracts$ALAND / convert_SQM # Convert Census land area (net), square meters to acres<\/SPAN><\/P><\/LI> TV_tracts$bk_AC_G = ( (TV_tracts$ALAND + TV_tracts$AWATER) / convert_SQM) # Convert Census land + water area (gross), square meters to acres<\/SPAN><\/P><\/LI> TV_tracts$TP_AC_N = (TV_tracts$T_P_ALL / TV_tracts$bk_AC_N) # Net density in that water area is not included<\/SPAN><\/P><\/LI> TV_tracts$TP_AC_G = (TV_tracts$T_P_ALL / TV_tracts$bk_AC_G) # Net density in that water area is not included<\/SPAN><\/P><\/LI><\/UL> Contact Brian McClure, Comprehensive Associate Planner, for questions.<\/SPAN><\/P><\/DIV><\/DIV><\/DIV>",
"geometryType": "esriGeometryPolygon",
"sourceSpatialReference": {
"wkt2": "PROJCRS[\"NAD_1983_Transverse_Mercator\",BASEGEOGCRS[\"GCS_North_American_1983\",DATUM[\"D_North_American_1983\",ELLIPSOID[\"GRS_1980\",6378137.0,298.257222101,LENGTHUNIT[\"Meter\",1.0]]],PRIMEM[\"Greenwich\",0.0,ANGLEUNIT[\"Degree\",0.0174532925199433]],CS[ellipsoidal,2],ANGLEUNIT[\"Degree\",0.0174532925199433]],CONVERSION[\"Transverse_Mercator\",METHOD[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",2625138.996430666,LENGTHUNIT[\"Foot_US\",0.3048006096012192]],PARAMETER[\"False_Northing\",0.0,LENGTHUNIT[\"Foot_US\",0.3048006096012192]],PARAMETER[\"Central_Meridian\",-115.75,ANGLEUNIT[\"Degree\",0.0174532925199433]],PARAMETER[\"Scale_Factor\",1.00011328,SCALEUNIT[\"Unity\",1.0]],PARAMETER[\"Latitude_Of_Origin\",41.66666666666666,ANGLEUNIT[\"Degree\",0.0174532925199433]]],CS[Cartesian,2],AXIS[\"Easting (X)\",east,ORDER[1]],AXIS[\"Northing (Y)\",north,ORDER[2]],LENGTHUNIT[\"Foot_US\",0.3048006096012192]]",
"wkt": "PROJCS[\"NAD_1983_Transverse_Mercator\",GEOGCS[\"GCS_North_American_1983\",DATUM[\"D_North_American_1983\",SPHEROID[\"GRS_1980\",6378137.0,298.257222101]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",2625138.996430666],PARAMETER[\"False_Northing\",0.0],PARAMETER[\"Central_Meridian\",-115.75],PARAMETER[\"Scale_Factor\",1.00011328],PARAMETER[\"Latitude_Of_Origin\",41.66666666666666],UNIT[\"Foot_US\",0.3048006096012192]]",
"xyTolerance": 0.003280833333333333,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -15825500,
"falseY": -47960400,
"xyUnits": 3048.0060960121928,
"falseZ": 0,
"zUnits": 1,
"falseM": 0,
"mUnits": 1
},
"copyrightText": "U.S. Census Bureau; that ESRI guy with a James Bond villain name, and of course, Christopher Walken.",
"parentLayer": {
"id": 27,
"name": "Census 2020 Indicator Relationships"
},
"subLayers": [],
"minScale": 0,
"maxScale": 0,
"referenceScale": 0.0,
"drawingInfo": {
"renderer": {
"type": "uniqueValue",
"valueExpression": "var field1 = $feature.T_H_All;\nvar field2 = $feature.T_P_ALL;\nvar hasNormField1 = false;\nvar hasNormField2 = false;\nvar normField1 = null;\nvar normField2 = null;\nif (\n IsEmpty(field1) || \n IsEmpty(field2) ||\n (hasNormField1 && (IsEmpty(normField1) || normField1 == 0)) ||\n (hasNormField2 && (IsEmpty(normField2) || normField2 == 0))\n) {\n return null; \n}\nvar value1 = IIf(hasNormField1, (field1 / normField1), field1);\nvar value2 = IIf(hasNormField2, (field2 / normField2), field2);\nvar breaks1 = [[92.000000,456.000000],[457.000000,571.000000],[572.000000,715.000000],[716.000000,1322.000000]];\nvar breaks2 = [[224.000000,1178.000000],[1179.000000,1469.000000],[1470.000000,1847.000000],[1848.000000,7796.000000]];\nvar classCodes = [\"L\", \"M1\", \"M2\", \"H\"];\nfunction getClassCode(value, breaks) {\n var code = null;\n for (var i in breaks) {\n var info = breaks[i];\n if (value >= info[0] && value <= info[1]) {\n code = classCodes[i];\n break;\n }\n }\n return code;\n}\nvar code1 = getClassCode(value1, breaks1);\nvar code2 = getClassCode(value2, breaks2);\nvar classValue = IIf(IsEmpty(code1) || IsEmpty(code2), null, code1 + code2);\nreturn classValue;",
"valueExpressionTitle": "Relationship",
"uniqueValueGroups": [
{
"heading": "",
"classes": [
{
"label": "High - High",
"description": "High - High",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
0,
0,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"HH"
]
]
},
{
"label": "High - Medium",
"description": "High - Medium",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
81,
60,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"HM2"
]
]
},
{
"label": "High - Mild",
"description": "High - Mild",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
162,
119,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"HM1"
]
]
},
{
"label": "High - Low",
"description": "High - Low",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
179,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"HL"
]
]
},
{
"label": "Medium - High",
"description": "Medium - High",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
27,
52,
65,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M2H"
]
]
},
{
"label": "Medium - Medium",
"description": "Medium - Medium",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
99,
101,
70,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M2M2"
]
]
},
{
"label": "Medium - Mild",
"description": "Medium - Mild",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
171,
151,
76,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M2M1"
]
]
},
{
"label": "Medium - Low",
"description": "Medium - Low",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
200,
81,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M2L"
]
]
},
{
"label": "Mild - High",
"description": "Mild - High",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
53,
105,
129,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M1H"
]
]
},
{
"label": "Mild - Medium",
"description": "Mild - Medium",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
116,
144,
140,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M1M2"
]
]
},
{
"label": "Mild - Mild",
"description": "Mild - Mild",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
180,
183,
151,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M1M1"
]
]
},
{
"label": "Mild - Low",
"description": "Mild - Low",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
222,
162,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"M1L"
]
]
},
{
"label": "Low - High",
"description": "Low - High",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
80,
157,
194,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"LH"
]
]
},
{
"label": "Low - Medium",
"description": "Low - Medium",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
134,
186,
210,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"LM2"
]
]
},
{
"label": "Low - Mild",
"description": "Low - Mild",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
189,
214,
227,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"LM1"
]
]
},
{
"label": "Low - Low",
"description": "Low - Low",
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
243,
243,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"values": [
[
"LL"
]
]
}
]
}
],
"uniqueValueInfos": [
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
0,
0,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "HH",
"label": "High - High"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
81,
60,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "HM2",
"label": "High - Medium"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
162,
119,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "HM1",
"label": "High - Mild"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
179,
0,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "HL",
"label": "High - Low"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
27,
52,
65,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M2H",
"label": "Medium - High"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
99,
101,
70,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M2M2",
"label": "Medium - Medium"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
171,
151,
76,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M2M1",
"label": "Medium - Mild"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
200,
81,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M2L",
"label": "Medium - Low"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
53,
105,
129,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M1H",
"label": "Mild - High"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
116,
144,
140,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M1M2",
"label": "Mild - Medium"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
180,
183,
151,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M1M1",
"label": "Mild - Mild"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
222,
162,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "M1L",
"label": "Mild - Low"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
80,
157,
194,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "LH",
"label": "Low - High"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
134,
186,
210,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "LM2",
"label": "Low - Medium"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
189,
214,
227,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "LM1",
"label": "Low - Mild"
},
{
"symbol": {
"type": "esriSFS",
"style": "esriSFSSolid",
"color": [
243,
243,
243,
255
],
"outline": {
"type": "esriSLS",
"style": "esriSLSSolid",
"color": [
130,
130,
130,
255
],
"width": 0.7
}
},
"value": "LL",
"label": "Low - Low"
}
],
"fieldDelimiter": ",",
"authoringInfo": {
"field1": {
"field": "T_H_All",
"label": "Total Households",
"classBreakInfos": [
{
"minValue": 92,
"maxValue": 456
},
{
"minValue": 456,
"maxValue": 571
},
{
"minValue": 571,
"maxValue": 715
},
{
"minValue": 715,
"maxValue": 1322
}
]
},
"field2": {
"field": "T_P_ALL",
"label": "Total Population",
"classBreakInfos": [
{
"minValue": 224,
"maxValue": 1178
},
{
"minValue": 1178,
"maxValue": 1469
},
{
"minValue": 1469,
"maxValue": 1847
},
{
"minValue": 1847,
"maxValue": 7796
}
]
},
"classificationMethod": "esriClassifyQuantile",
"type": "relationship",
"focus": "HH",
"numClasses": 4
}
},
"scaleSymbols": true,
"transparency": 15,
"labelingInfo": null
},
"defaultVisibility": false,
"extent": {
"xmin": 2286635.8242123276,
"ymin": 527171.2841779068,
"xmax": 2565516.5390875787,
"ymax": 809233.6780572385,
"spatialReference": {
"wkt2": "PROJCRS[\"NAD_1983_Transverse_Mercator\",BASEGEOGCRS[\"GCS_North_American_1983\",DATUM[\"D_North_American_1983\",ELLIPSOID[\"GRS_1980\",6378137.0,298.257222101,LENGTHUNIT[\"Meter\",1.0]]],PRIMEM[\"Greenwich\",0.0,ANGLEUNIT[\"Degree\",0.0174532925199433]],CS[ellipsoidal,2],ANGLEUNIT[\"Degree\",0.0174532925199433]],CONVERSION[\"Transverse_Mercator\",METHOD[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",2625138.996430666,LENGTHUNIT[\"Foot_US\",0.3048006096012192]],PARAMETER[\"False_Northing\",0.0,LENGTHUNIT[\"Foot_US\",0.3048006096012192]],PARAMETER[\"Central_Meridian\",-115.75,ANGLEUNIT[\"Degree\",0.0174532925199433]],PARAMETER[\"Scale_Factor\",1.00011328,SCALEUNIT[\"Unity\",1.0]],PARAMETER[\"Latitude_Of_Origin\",41.66666666666666,ANGLEUNIT[\"Degree\",0.0174532925199433]]],CS[Cartesian,2],AXIS[\"Easting (X)\",east,ORDER[1]],AXIS[\"Northing (Y)\",north,ORDER[2]],LENGTHUNIT[\"Foot_US\",0.3048006096012192]]",
"wkt": "PROJCS[\"NAD_1983_Transverse_Mercator\",GEOGCS[\"GCS_North_American_1983\",DATUM[\"D_North_American_1983\",SPHEROID[\"GRS_1980\",6378137.0,298.257222101]],PRIMEM[\"Greenwich\",0.0],UNIT[\"Degree\",0.0174532925199433]],PROJECTION[\"Transverse_Mercator\"],PARAMETER[\"False_Easting\",2625138.996430666],PARAMETER[\"False_Northing\",0.0],PARAMETER[\"Central_Meridian\",-115.75],PARAMETER[\"Scale_Factor\",1.00011328],PARAMETER[\"Latitude_Of_Origin\",41.66666666666666],UNIT[\"Foot_US\",0.3048006096012192]]",
"xyTolerance": 0.001061273603987969,
"zTolerance": 2.0E-4,
"mTolerance": 2.0E-4,
"falseX": -15825500,
"falseY": -47960400,
"xyUnits": 1.37225794507753E8,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
}
},
"hasAttachments": false,
"htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText",
"displayField": "NAMELSAD",
"typeIdField": null,
"subtypeFieldName": null,
"subtypeField": null,
"defaultSubtypeCode": null,
"fields": [
{
"name": "OBJECTID",
"type": "esriFieldTypeOID",
"alias": "OBJECTID",
"domain": null
},
{
"name": "STATEFP",
"type": "esriFieldTypeString",
"alias": "STATEFP",
"length": 80,
"domain": null
},
{
"name": "COUNTYFP",
"type": "esriFieldTypeString",
"alias": "COUNTYFP",
"length": 80,
"domain": null
},
{
"name": "TRACTCE",
"type": "esriFieldTypeString",
"alias": "TRACTCE",
"length": 80,
"domain": null
},
{
"name": "BLKGRPCE",
"type": "esriFieldTypeString",
"alias": "BLKGRPCE",
"length": 80,
"domain": null
},
{
"name": "GEOID",
"type": "esriFieldTypeString",
"alias": "GEOID",
"length": 80,
"domain": null
},
{
"name": "NAMELSAD",
"type": "esriFieldTypeString",
"alias": "NAMELSAD",
"length": 80,
"domain": null
},
{
"name": "MTFCC",
"type": "esriFieldTypeString",
"alias": "MTFCC",
"length": 80,
"domain": null
},
{
"name": "FUNCSTAT",
"type": "esriFieldTypeString",
"alias": "FUNCSTAT",
"length": 80,
"domain": null
},
{
"name": "INTPTLAT",
"type": "esriFieldTypeString",
"alias": "INTPTLAT",
"length": 80,
"domain": null
},
{
"name": "INTPTLON",
"type": "esriFieldTypeString",
"alias": "INTPTLON",
"length": 80,
"domain": null
},
{
"name": "T_H_All",
"type": "esriFieldTypeDouble",
"alias": "T_H_All",
"domain": null
},
{
"name": "T_H_OCC",
"type": "esriFieldTypeDouble",
"alias": "T_H_OCC",
"domain": null
},
{
"name": "T_H_UOC",
"type": "esriFieldTypeDouble",
"alias": "T_H_UOC",
"domain": null
},
{
"name": "T_P_ALL",
"type": "esriFieldTypeDouble",
"alias": "T_P_ALL",
"domain": null
},
{
"name": "T_P_18p",
"type": "esriFieldTypeDouble",
"alias": "T_P_18p",
"domain": null
},
{
"name": "T_1Race",
"type": "esriFieldTypeDouble",
"alias": "T_1Race",
"domain": null
},
{
"name": "T_2Race",
"type": "esriFieldTypeDouble",
"alias": "T_2Race",
"domain": null
},
{
"name": "T_R_Wht",
"type": "esriFieldTypeDouble",
"alias": "T_R_Wht",
"domain": null
},
{
"name": "T_R_Blk",
"type": "esriFieldTypeDouble",
"alias": "T_R_Blk",
"domain": null
},
{
"name": "T_R_NTV",
"type": "esriFieldTypeDouble",
"alias": "T_R_NTV",
"domain": null
},
{
"name": "T_R_ASN",
"type": "esriFieldTypeDouble",
"alias": "T_R_ASN",
"domain": null
},
{
"name": "T_R_ISL",
"type": "esriFieldTypeDouble",
"alias": "T_R_ISL",
"domain": null
},
{
"name": "T_R_OTR",
"type": "esriFieldTypeDouble",
"alias": "T_R_OTR",
"domain": null
},
{
"name": "T_R_LAT",
"type": "esriFieldTypeDouble",
"alias": "T_R_LAT",
"domain": null
},
{
"name": "T_R_NOT",
"type": "esriFieldTypeDouble",
"alias": "T_R_NOT",
"domain": null
},
{
"name": "T_I_ALL",
"type": "esriFieldTypeDouble",
"alias": "T_I_ALL",
"domain": null
},
{
"name": "T_I_NON",
"type": "esriFieldTypeDouble",
"alias": "T_I_NON",
"domain": null
},
{
"name": "T_I_COR",
"type": "esriFieldTypeDouble",
"alias": "T_I_COR",
"domain": null
},
{
"name": "T_I_JUV",
"type": "esriFieldTypeDouble",
"alias": "T_I_JUV",
"domain": null
},
{
"name": "T_I_NUR",
"type": "esriFieldTypeDouble",
"alias": "T_I_NUR",
"domain": null
},
{
"name": "T_I_OTI",
"type": "esriFieldTypeDouble",
"alias": "T_I_OTI",
"domain": null
},
{
"name": "T_I_EDU",
"type": "esriFieldTypeDouble",
"alias": "T_I_EDU",
"domain": null
},
{
"name": "T_I_MIT",
"type": "esriFieldTypeDouble",
"alias": "T_I_MIT",
"domain": null
},
{
"name": "T_I_OTN",
"type": "esriFieldTypeDouble",
"alias": "T_I_OTN",
"domain": null
},
{
"name": "t_adult",
"type": "esriFieldTypeDouble",
"alias": "t_adult",
"domain": null
},
{
"name": "p_adult",
"type": "esriFieldTypeDouble",
"alias": "p_adult",
"domain": null
},
{
"name": "t_kids_",
"type": "esriFieldTypeDouble",
"alias": "t_kids_",
"domain": null
},
{
"name": "p_kids_",
"type": "esriFieldTypeDouble",
"alias": "p_kids_",
"domain": null
},
{
"name": "P_white",
"type": "esriFieldTypeDouble",
"alias": "P_white",
"domain": null
},
{
"name": "P_nwhit",
"type": "esriFieldTypeDouble",
"alias": "P_nwhit",
"domain": null
},
{
"name": "P_latin",
"type": "esriFieldTypeDouble",
"alias": "P_latin",
"domain": null
},
{
"name": "P_nlati",
"type": "esriFieldTypeDouble",
"alias": "P_nlati",
"domain": null
},
{
"name": "P_black",
"type": "esriFieldTypeDouble",
"alias": "P_black",
"domain": null
},
{
"name": "P_natve",
"type": "esriFieldTypeDouble",
"alias": "P_natve",
"domain": null
},
{
"name": "P_asian",
"type": "esriFieldTypeDouble",
"alias": "P_asian",
"domain": null
},
{
"name": "P_isle_",
"type": "esriFieldTypeDouble",
"alias": "P_isle_",
"domain": null
},
{
"name": "P_other",
"type": "esriFieldTypeDouble",
"alias": "P_other",
"domain": null
},
{
"name": "P_multi",
"type": "esriFieldTypeDouble",
"alias": "P_multi",
"domain": null
},
{
"name": "bk_AC_N",
"type": "esriFieldTypeDouble",
"alias": "bk_AC_N",
"domain": null
},
{
"name": "bk_AC_G",
"type": "esriFieldTypeDouble",
"alias": "bk_AC_G",
"domain": null
},
{
"name": "TP_AC_N",
"type": "esriFieldTypeDouble",
"alias": "TP_AC_N",
"domain": null
},
{
"name": "TP_AC_G",
"type": "esriFieldTypeDouble",
"alias": "TP_AC_G",
"domain": null
},
{
"name": "Shape",
"type": "esriFieldTypeGeometry",
"alias": "Shape",
"domain": null
},
{
"name": "Shape.STArea()",
"type": "esriFieldTypeDouble",
"alias": "Shape.STArea()",
"domain": null
},
{
"name": "Shape.STLength()",
"type": "esriFieldTypeDouble",
"alias": "Shape.STLength()",
"domain": null
}
],
"geometryField": {
"name": "Shape",
"type": "esriFieldTypeGeometry",
"alias": "Shape"
},
"indexes": [
{
"name": "R733_pk",
"fields": "OBJECTID",
"isAscending": true,
"isUnique": true,
"description": ""
},
{
"name": "S665_idx",
"fields": "Shape",
"isAscending": true,
"isUnique": true,
"description": ""
}
],
"subtypes": [],
"relationships": [],
"canModifyLayer": true,
"canScaleSymbols": false,
"hasLabels": false,
"capabilities": "Map,Query,Data",
"maxRecordCount": 2000,
"supportsStatistics": true,
"supportsExceedsLimitStatistics": true,
"supportsAdvancedQueries": true,
"supportedQueryFormats": "JSON, geoJSON, PBF",
"isDataVersioned": false,
"ownershipBasedAccessControlForFeatures": {"allowOthersToQuery": true},
"useStandardizedQueries": true,
"supportedSpatialRelationships": [
"esriSpatialRelIntersects",
"esriSpatialRelContains",
"esriSpatialRelCrosses",
"esriSpatialRelEnvelopeIntersects",
"esriSpatialRelIndexIntersects",
"esriSpatialRelOverlaps",
"esriSpatialRelTouches",
"esriSpatialRelWithin",
"esriSpatialRelRelation"
],
"advancedQueryCapabilities": {
"useStandardizedQueries": true,
"supportsStatistics": true,
"supportsPercentileStatistics": true,
"supportsHavingClause": true,
"supportsOrderBy": true,
"supportsDistinct": true,
"supportsCountDistinct": true,
"supportsAdvancedQueryRelated": true,
"supportsQueryRelatedPagination": true,
"supportsPagination": true,
"supportsLod": false,
"supportsQueryWithLodSR": false,
"supportsTrueCurve": true,
"supportsQueryWithDatumTransformation": true,
"supportsReturningQueryExtent": true,
"supportsQueryWithDistance": true,
"supportsSqlExpression": true,
"supportsTimeRelation": true,
"supportsSqlFormat": false,
"supportsQueryAnalytic": true,
"supportsCurrentUserQueries": true
},
"supportsDatumTransformation": true,
"advancedQueryAnalyticCapabilities": {
"supportsLinearRegression": true,
"supportsAsync": false,
"supportsPercentileAnalytic": true
},
"dateFieldsTimeReference": {
"timeZone": "Mountain Standard Time",
"respectsDaylightSaving": false
},
"preferredTimeReference": null,
"datesInUnknownTimezone": false,
"hasGeometryProperties": true,
"geometryProperties": {
"shapeAreaFieldName": "Shape.STArea()",
"shapeLengthFieldName": "Shape.STLength()",
"units": "esriFeet",
"mapUnits": {"uwkid": 9003}
},
"hasMetadata": true,
"isDataArchived": false,
"archivingInfo": {
"supportsQueryWithHistoricMoment": false,
"startArchivingMoment": -1
},
"supportsCoordinatesQuantization": true,
"supportsDynamicLegends": false,
"serviceItemId": "6846accf6969431abd5ee597bf83d0c5"
}