{ "currentVersion": 10.91, "cimVersion": "2.9.0", "id": 20, "name": "Tracts", "type": "Feature Layer", "description": "

The information included is U.S. Census Bureau data from the 2020 decennial Census, and summarized by Census tracts. 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 tract 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": { "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": 19, "name": "Youth Population Total" }, "subLayers": [], "minScale": 0, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "classBreaks", "authoringInfo": { "type": "classedColor", "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 32, 77, 255 ], "toColor": [ 0, 33, 79, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 33, 79, 255 ], "toColor": [ 0, 33, 79, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 33, 79, 255 ], "toColor": [ 0, 34, 82, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 34, 82, 255 ], "toColor": [ 0, 35, 84, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 35, 84, 255 ], "toColor": [ 0, 35, 84, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 35, 84, 255 ], "toColor": [ 0, 36, 87, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 36, 87, 255 ], "toColor": [ 0, 37, 89, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 37, 89, 255 ], "toColor": [ 0, 37, 89, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 37, 89, 255 ], "toColor": [ 0, 38, 92, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 38, 92, 255 ], "toColor": [ 0, 39, 94, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 39, 94, 255 ], "toColor": [ 0, 39, 94, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 39, 94, 255 ], "toColor": [ 0, 40, 97, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 40, 97, 255 ], "toColor": [ 0, 41, 99, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 41, 99, 255 ], "toColor": [ 0, 43, 102, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 43, 102, 255 ], "toColor": [ 0, 43, 102, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 43, 102, 255 ], "toColor": [ 0, 44, 105, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 44, 105, 255 ], "toColor": [ 0, 45, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 45, 107, 255 ], "toColor": [ 0, 45, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 45, 107, 255 ], "toColor": [ 0, 46, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 46, 110, 255 ], "toColor": [ 0, 47, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 47, 112, 255 ], "toColor": [ 0, 47, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 47, 112, 255 ], "toColor": [ 0, 47, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 47, 112, 255 ], "toColor": [ 0, 47, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 47, 112, 255 ], "toColor": [ 0, 49, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 49, 112, 255 ], "toColor": [ 0, 49, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 49, 112, 255 ], "toColor": [ 0, 50, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 50, 112, 255 ], "toColor": [ 0, 50, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 50, 112, 255 ], "toColor": [ 0, 52, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 52, 112, 255 ], "toColor": [ 0, 52, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 52, 112, 255 ], "toColor": [ 0, 53, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 53, 110, 255 ], "toColor": [ 1, 54, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 1, 54, 110, 255 ], "toColor": [ 5, 54, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 5, 54, 110, 255 ], "toColor": [ 10, 55, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 10, 55, 110, 255 ], "toColor": [ 14, 56, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 14, 56, 110, 255 ], "toColor": [ 19, 57, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 19, 57, 110, 255 ], "toColor": [ 21, 58, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 21, 58, 110, 255 ], "toColor": [ 23, 58, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 23, 58, 110, 255 ], "toColor": [ 26, 58, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 26, 58, 110, 255 ], "toColor": [ 29, 60, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 29, 60, 110, 255 ], "toColor": [ 31, 61, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 31, 61, 110, 255 ], "toColor": [ 32, 61, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 32, 61, 107, 255 ], "toColor": [ 33, 60, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 33, 60, 107, 255 ], "toColor": [ 35, 62, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 35, 62, 107, 255 ], "toColor": [ 37, 62, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 37, 62, 107, 255 ], "toColor": [ 40, 62, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 40, 62, 107, 255 ], "toColor": [ 41, 64, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 41, 64, 107, 255 ], "toColor": [ 43, 64, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 43, 64, 107, 255 ], "toColor": [ 44, 66, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 44, 66, 107, 255 ], "toColor": [ 46, 65, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 46, 65, 107, 255 ], "toColor": [ 47, 67, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 47, 67, 107, 255 ], "toColor": [ 49, 70, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 49, 70, 107, 255 ], "toColor": [ 50, 68, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 50, 68, 107, 255 ], "toColor": [ 51, 69, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 51, 69, 107, 255 ], "toColor": [ 54, 71, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 54, 71, 107, 255 ], "toColor": [ 54, 71, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 54, 71, 107, 255 ], "toColor": [ 55, 69, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 55, 69, 107, 255 ], "toColor": [ 57, 72, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 57, 72, 107, 255 ], "toColor": [ 58, 73, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 58, 73, 107, 255 ], "toColor": [ 59, 74, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 59, 74, 107, 255 ], "toColor": [ 60, 74, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 60, 74, 107, 255 ], "toColor": [ 61, 75, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 61, 75, 107, 255 ], "toColor": [ 63, 76, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 63, 76, 107, 255 ], "toColor": [ 64, 76, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 64, 76, 107, 255 ], "toColor": [ 65, 77, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 65, 77, 107, 255 ], "toColor": [ 66, 79, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 66, 79, 107, 255 ], "toColor": [ 67, 79, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 67, 79, 107, 255 ], "toColor": [ 69, 79, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 69, 79, 107, 255 ], "toColor": [ 69, 79, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 69, 79, 107, 255 ], "toColor": [ 70, 81, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 70, 81, 107, 255 ], "toColor": [ 71, 81, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 71, 81, 107, 255 ], "toColor": [ 73, 82, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 73, 82, 107, 255 ], "toColor": [ 74, 83, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 74, 83, 107, 255 ], "toColor": [ 75, 84, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 75, 84, 107, 255 ], "toColor": [ 75, 83, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 75, 83, 107, 255 ], "toColor": [ 76, 84, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 76, 84, 107, 255 ], "toColor": [ 77, 85, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 77, 85, 107, 255 ], "toColor": [ 78, 85, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 78, 85, 107, 255 ], "toColor": [ 79, 86, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 79, 86, 107, 255 ], "toColor": [ 80, 87, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 80, 87, 107, 255 ], "toColor": [ 81, 88, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 81, 88, 107, 255 ], "toColor": [ 82, 88, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 82, 88, 107, 255 ], "toColor": [ 85, 89, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 85, 89, 107, 255 ], "toColor": [ 86, 92, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 86, 92, 110, 255 ], "toColor": [ 87, 92, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 87, 92, 110, 255 ], "toColor": [ 87, 93, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 87, 93, 110, 255 ], "toColor": [ 88, 94, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 88, 94, 110, 255 ], "toColor": [ 89, 95, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 89, 95, 110, 255 ], "toColor": [ 90, 95, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 90, 95, 110, 255 ], "toColor": [ 91, 96, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 91, 96, 110, 255 ], "toColor": [ 91, 96, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 91, 96, 110, 255 ], "toColor": [ 92, 97, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 92, 97, 110, 255 ], "toColor": [ 93, 97, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 93, 97, 110, 255 ], "toColor": [ 93, 97, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 93, 97, 110, 255 ], "toColor": [ 93, 97, 110, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 93, 97, 110, 255 ], "toColor": [ 96, 100, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 96, 100, 112, 255 ], "toColor": [ 99, 102, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 99, 102, 112, 255 ], "toColor": [ 99, 102, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 99, 102, 112, 255 ], "toColor": [ 100, 103, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 100, 103, 112, 255 ], "toColor": [ 100, 103, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 100, 103, 112, 255 ], "toColor": [ 100, 103, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 100, 103, 112, 255 ], "toColor": [ 101, 104, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 101, 104, 112, 255 ], "toColor": [ 102, 105, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 102, 105, 112, 255 ], "toColor": [ 103, 105, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 103, 105, 112, 255 ], "toColor": [ 103, 105, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 103, 105, 112, 255 ], "toColor": [ 104, 106, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 104, 106, 112, 255 ], "toColor": [ 105, 106, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 105, 106, 112, 255 ], "toColor": [ 108, 109, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 108, 109, 112, 255 ], "toColor": [ 108, 110, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 108, 110, 115, 255 ], "toColor": [ 109, 111, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 109, 111, 115, 255 ], "toColor": [ 110, 111, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 110, 111, 115, 255 ], "toColor": [ 110, 111, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 110, 111, 115, 255 ], "toColor": [ 111, 112, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 111, 112, 115, 255 ], "toColor": [ 111, 112, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 111, 112, 115, 255 ], "toColor": [ 111, 111, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 111, 111, 115, 255 ], "toColor": [ 111, 111, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 111, 111, 115, 255 ], "toColor": [ 111, 114, 115, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 111, 114, 115, 255 ], "toColor": [ 115, 116, 117, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 115, 116, 117, 255 ], "toColor": [ 116, 116, 117, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 116, 116, 117, 255 ], "toColor": [ 117, 117, 117, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 117, 117, 117, 255 ], "toColor": [ 117, 117, 117, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 117, 117, 117, 255 ], "toColor": [ 120, 120, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 120, 120, 119, 255 ], "toColor": [ 120, 119, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 120, 119, 119, 255 ], "toColor": [ 120, 120, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 120, 120, 119, 255 ], "toColor": [ 120, 120, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 120, 120, 116, 255 ], "toColor": [ 122, 122, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 122, 122, 120, 255 ], "toColor": [ 122, 122, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 122, 122, 120, 255 ], "toColor": [ 125, 124, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 125, 124, 121, 255 ], "toColor": [ 125, 124, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 125, 124, 120, 255 ], "toColor": [ 125, 124, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 125, 124, 119, 255 ], "toColor": [ 128, 125, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 128, 125, 120, 255 ], "toColor": [ 128, 126, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 128, 126, 121, 255 ], "toColor": [ 130, 128, 122, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 130, 128, 122, 255 ], "toColor": [ 130, 128, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 130, 128, 121, 255 ], "toColor": [ 130, 127, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 130, 127, 120, 255 ], "toColor": [ 133, 130, 122, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 133, 130, 122, 255 ], "toColor": [ 133, 130, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 133, 130, 121, 255 ], "toColor": [ 133, 131, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 133, 131, 121, 255 ], "toColor": [ 135, 132, 122, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 135, 132, 122, 255 ], "toColor": [ 135, 132, 122, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 135, 132, 122, 255 ], "toColor": [ 135, 132, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 135, 132, 120, 255 ], "toColor": [ 138, 135, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 138, 135, 121, 255 ], "toColor": [ 138, 135, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 138, 135, 121, 255 ], "toColor": [ 140, 136, 122, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 140, 136, 122, 255 ], "toColor": [ 140, 136, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 140, 136, 121, 255 ], "toColor": [ 140, 136, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 140, 136, 121, 255 ], "toColor": [ 143, 139, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 143, 139, 121, 255 ], "toColor": [ 143, 139, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 143, 139, 121, 255 ], "toColor": [ 143, 138, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 143, 138, 120, 255 ], "toColor": [ 145, 140, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 145, 140, 121, 255 ], "toColor": [ 145, 140, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 145, 140, 119, 255 ], "toColor": [ 148, 143, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 148, 143, 121, 255 ], "toColor": [ 148, 142, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 148, 142, 120, 255 ], "toColor": [ 148, 142, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 148, 142, 120, 255 ], "toColor": [ 150, 144, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 150, 144, 120, 255 ], "toColor": [ 150, 144, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 150, 144, 119, 255 ], "toColor": [ 153, 147, 121, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 153, 147, 121, 255 ], "toColor": [ 153, 146, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 153, 146, 119, 255 ], "toColor": [ 153, 146, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 153, 146, 118, 255 ], "toColor": [ 156, 148, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 156, 148, 120, 255 ], "toColor": [ 156, 149, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 156, 149, 118, 255 ], "toColor": [ 158, 151, 120, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 158, 151, 120, 255 ], "toColor": [ 158, 150, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 158, 150, 119, 255 ], "toColor": [ 158, 150, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 158, 150, 119, 255 ], "toColor": [ 161, 152, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 161, 152, 119, 255 ], "toColor": [ 161, 153, 117, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 161, 153, 117, 255 ], "toColor": [ 163, 154, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 163, 154, 118, 255 ], "toColor": [ 163, 154, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 163, 154, 118, 255 ], "toColor": [ 166, 156, 119, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 166, 156, 119, 255 ], "toColor": [ 166, 156, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 166, 156, 116, 255 ], "toColor": [ 166, 156, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 166, 156, 116, 255 ], "toColor": [ 168, 158, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 168, 158, 118, 255 ], "toColor": [ 168, 158, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 168, 158, 116, 255 ], "toColor": [ 171, 161, 118, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 171, 161, 118, 255 ], "toColor": [ 171, 160, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 171, 160, 116, 255 ], "toColor": [ 171, 160, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 171, 160, 114, 255 ], "toColor": [ 173, 162, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 173, 162, 116, 255 ], "toColor": [ 173, 163, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 173, 163, 116, 255 ], "toColor": [ 176, 165, 116, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 176, 165, 116, 255 ], "toColor": [ 176, 164, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 176, 164, 114, 255 ], "toColor": [ 176, 164, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 176, 164, 114, 255 ], "toColor": [ 179, 167, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 167, 114, 255 ], "toColor": [ 179, 167, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 167, 114, 255 ], "toColor": [ 181, 169, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 181, 169, 114, 255 ], "toColor": [ 181, 168, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 181, 168, 112, 255 ], "toColor": [ 181, 170, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 181, 170, 112, 255 ], "toColor": [ 184, 171, 114, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 184, 171, 114, 255 ], "toColor": [ 184, 169, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 184, 169, 112, 255 ], "toColor": [ 186, 172, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 186, 172, 112, 255 ], "toColor": [ 186, 172, 112, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 186, 172, 112, 255 ], "toColor": [ 189, 175, 111, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 175, 111, 255 ], "toColor": [ 189, 175, 111, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 189, 175, 111, 255 ], "toColor": [ 191, 178, 111, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 191, 178, 111, 255 ], "toColor": [ 191, 178, 111, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 191, 178, 111, 255 ], "toColor": [ 191, 176, 109, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 191, 176, 109, 255 ], "toColor": [ 194, 178, 109, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 194, 178, 109, 255 ], "toColor": [ 194, 178, 109, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 194, 178, 109, 255 ], "toColor": [ 194, 180, 109, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 194, 180, 109, 255 ], "toColor": [ 196, 182, 108, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 196, 182, 108, 255 ], "toColor": [ 196, 182, 108, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 196, 182, 108, 255 ], "toColor": [ 199, 184, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 199, 184, 107, 255 ], "toColor": [ 199, 182, 105, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 199, 182, 105, 255 ], "toColor": [ 201, 184, 107, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 201, 184, 107, 255 ], "toColor": [ 201, 184, 105, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 201, 184, 105, 255 ], "toColor": [ 204, 188, 106, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 204, 188, 106, 255 ], "toColor": [ 204, 187, 104, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 204, 187, 104, 255 ], "toColor": [ 204, 187, 104, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 204, 187, 104, 255 ], "toColor": [ 207, 189, 103, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 207, 189, 103, 255 ], "toColor": [ 207, 189, 103, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 207, 189, 103, 255 ], "toColor": [ 209, 192, 105, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 209, 192, 105, 255 ], "toColor": [ 209, 191, 102, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 209, 191, 102, 255 ], "toColor": [ 212, 193, 102, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 212, 193, 102, 255 ], "toColor": [ 212, 193, 102, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 212, 193, 102, 255 ], "toColor": [ 214, 195, 101, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 214, 195, 101, 255 ], "toColor": [ 214, 195, 101, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 214, 195, 101, 255 ], "toColor": [ 214, 195, 99, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 214, 195, 99, 255 ], "toColor": [ 217, 197, 100, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 217, 197, 100, 255 ], "toColor": [ 217, 197, 98, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 217, 197, 98, 255 ], "toColor": [ 217, 199, 95, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 217, 199, 95, 255 ], "toColor": [ 219, 201, 96, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 219, 201, 96, 255 ], "toColor": [ 222, 201, 95, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 222, 201, 95, 255 ], "toColor": [ 222, 201, 95, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 222, 201, 95, 255 ], "toColor": [ 222, 201, 95, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 222, 201, 95, 255 ], "toColor": [ 224, 203, 94, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 224, 203, 94, 255 ], "toColor": [ 224, 202, 92, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 224, 202, 92, 255 ], "toColor": [ 227, 207, 93, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 227, 207, 93, 255 ], "toColor": [ 227, 207, 93, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 227, 207, 93, 255 ], "toColor": [ 230, 207, 92, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 230, 207, 92, 255 ], "toColor": [ 230, 209, 90, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 230, 209, 90, 255 ], "toColor": [ 232, 211, 90, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 211, 90, 255 ], "toColor": [ 232, 210, 88, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 210, 88, 255 ], "toColor": [ 232, 210, 88, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 232, 210, 88, 255 ], "toColor": [ 235, 212, 87, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 235, 212, 87, 255 ], "toColor": [ 235, 212, 87, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 235, 212, 87, 255 ], "toColor": [ 237, 214, 85, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 237, 214, 85, 255 ], "toColor": [ 237, 214, 83, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 237, 214, 83, 255 ], "toColor": [ 240, 216, 84, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 240, 216, 84, 255 ], "toColor": [ 240, 216, 81, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 240, 216, 81, 255 ], "toColor": [ 242, 218, 82, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 242, 218, 82, 255 ], "toColor": [ 242, 218, 80, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 242, 218, 80, 255 ], "toColor": [ 245, 220, 78, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 245, 220, 78, 255 ], "toColor": [ 245, 220, 78, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 245, 220, 78, 255 ], "toColor": [ 245, 219, 76, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 245, 219, 76, 255 ], "toColor": [ 247, 222, 77, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 247, 222, 77, 255 ], "toColor": [ 247, 221, 74, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 247, 221, 74, 255 ], "toColor": [ 250, 224, 75, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 250, 224, 75, 255 ], "toColor": [ 250, 223, 72, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 250, 223, 72, 255 ], "toColor": [ 252, 225, 71, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 225, 71, 255 ], "toColor": [ 252, 225, 71, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 225, 71, 255 ], "toColor": [ 255, 230, 69, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 255, 230, 69, 255 ], "toColor": [ 0, 230, 69, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 230, 69, 255 ], "toColor": [ 0, 230, 65, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 230, 65, 255 ], "toColor": [ 0, 232, 66, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 232, 66, 255 ], "toColor": [ 0, 232, 66, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 232, 66, 255 ], "toColor": [ 0, 232, 70, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 0, 232, 70, 255 ], "toColor": [ 0, 235, 70, 255 ] } ] }, "classificationMethod": "esriClassifyQuantile" }, "field": "t_kids_", "classificationMethod": "esriClassifyQuantile", "minValue": 121, "classBreakInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 32, 77, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 450, "label": "≤450.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 51, 111, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 620, "label": "≤620.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 56, 72, 107, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 733, "label": "≤733.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 86, 92, 109, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 836, "label": "≤836.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 112, 113, 115, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 952, "label": "≤952.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 138, 134, 121, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 1060, "label": "≤1060.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 167, 157, 117, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 1155, "label": "≤1155.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 197, 181, 108, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 1312, "label": "≤1312.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 228, 207, 91, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 1560, "label": "≤1560.000000" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 234, 69, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.7 } }, "classMaxValue": 2371, "label": "≤2371.000000" } ], "legendOptions": {"order": "ascendingValues"} }, "scaleSymbols": true, "transparency": 15, "labelingInfo": null }, "defaultVisibility": false, "extent": { "xmin": 2286635.8242123276, "ymin": 527171.2841779068, "xmax": 2565516.5390875787, "ymax": 809233.6780572385, "spatialReference": { "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": "NAME", "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": "GEOID", "type": "esriFieldTypeString", "alias": "GEOID", "length": 80, "domain": null }, { "name": "NAME", "type": "esriFieldTypeString", "alias": "NAME", "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": "R735_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S667_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, "supportsPagination": true, "supportsLod": false, "supportsQueryWithLodSR": false, "supportsTrueCurve": true, "supportsQueryWithDatumTransformation": true, "supportsReturningQueryExtent": true, "supportsQueryWithDistance": true, "supportsSqlExpression": true, "supportsTimeRelation": true, "supportsSqlFormat": false, "supportsQueryAnalytic": 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" }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "6846accf6969431abd5ee597bf83d0c5" }