{"renderer":{"type":"uniqueValue","field1":null,"valueExpression":"// This Arcade expression defines if a census tract is considered\n// a \"low-income community\" as defined by the 45D(e) outline\n// It then defines if a tract is qualified to be considered as an \n// Opportunity Zone\n\n// start by assigning all tracts as \"not qualified\" so that it is \n//only assigned when it meets one of the requirements\nvar qualified = \"Not Qualified\"\n\n// The poverty rate is at least 20%\nif($feature.Poverty_csv_Percent_below_pover >= 20){\n qualified = \"Qualified\"\n};\n\n// or\n// if in a metropolitan area, the greater of 80% of either the \nif($feature.Tract_by_Metro_Area_csv_class == \"Metro\"){\n if($feature.MedianFamilyIncome_csv_Median_F < (max(.8*$feature.State_MedFamInc, .8*$feature.Metro_MedFamInc))){\n qualified = \"Qualified\"\n };\n};\n\n// if not in a metro area,\n// the median family income does not exceed 80 percent of statewide median family income\nif($feature.Tract_by_Metro_Area_csv_class != \"Metro\"){\n if ($feature.MedianFamilyIncome_csv_Median_F < .8*($feature.State_MedFamInc)){\n qualified = \"Qualified\"\n };\n};\n\nreturn qualified;","valueExpressionTitle":"Opportunity Zone Qualification","uniqueValueInfos":[{"value":"Not Qualified","symbol":{"color":[71,71,71,255],"outline":{"color":[76,76,76,255],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"},"label":"Not Qualified"},{"value":"Qualified","symbol":{"color":[115,255,223,255],"outline":{"color":[0,230,169,126],"width":0.75,"type":"esriSLS","style":"esriSLSSolid"},"type":"esriSFS","style":"esriSFSSolid"},"label":"Qualified"}]},"transparency":20}
HasZ: false
HasM: false
Has Attachments: false
Has Geometry Properties: true
HTML Popup Type: esriServerHTMLPopupTypeAsHTMLText