{ "currentVersion": 11.0, "cimVersion": "3.0.0", "id": 116, "name": "Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 2.0E-5, "mTolerance": 2, "falseX": -20037700, "falseY": -30241100, "xyUnits": 10000, "falseZ": -2554.5690450743, "zUnits": 399999.99999999994, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": { "id": 45, "name": "Data" }, "subLayers": [], "minScale": 24000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 0, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 0, 0, 255 ], "width": 1 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Cherokee County is meant to stack the short version of the Parcel ID (PARCEL_NUM) above\n// the acreage (Anno_Acreage)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCEL_NUM; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 7) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.AcreageAnno\n// var textAcre = \"\"\n\n// iif (acre >= 5, textAcre = Round(acre,1) + \" AC\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamicNeverRemove", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 1 And AcreageAnno IS NOT NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCEL_NUM_WAcreageAnno", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Tahoma", "size": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } }, { "labelExpressionInfo": { "expression": "// this label expression Cherokee County is meant to stack the short version of the Parcel ID (PARCEL_NUM) above\n// the acreage (CALC_ACRE)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCEL_NUM; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 7) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.CALC_ACRE\nvar textAcre = \"\"\n\niif (acre >= 5, textAcre = Round(acre,1) + \" AC(c)\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamicNeverRemove", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 1 And DEED_ACRE IS NULL And AcreageAnno IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCEL_NUM_wCALC_ACRE", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Tahoma", "size": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } }, { "labelExpressionInfo": { "expression": "// this label expression Cherokee County is meant to stack the short version of the Parcel ID (PARCEL_NUM) above\n// the acreage (DEED_ACRE)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCEL_NUM; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 7) // gives me 05.002\nvar wholePar = Left(shortName, 3) // gives me 05 \nvar whole = wholePar\n\n// let\u2019s check and see if the leading digit of the parcel number is a Zero. If it is, we are going to drop it.\n\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\n\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\n\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \n// decimal component, and that they are not 000\n\nvar rem = Right(shortName, 3) // gives me 002\n\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\n// else concatenate \".\" with the first 3 of the 4 final digits\n\nvar frac = \"\"\n\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\n\nvar parcelID = whole + frac // gives me 05.002\n\n// now let's set the acreage so that it only displays if there are 5 or more acres\n// also, we will round the acreage to 1 decimal place\n\nvar acre = $feature.DEED_ACRE\nvar textAcre = \"\"\n\niif (acre >= 5, textAcre = Round(acre,1) + \" Ac(c)\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamicNeverRemove", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 1 And DEED_ACRE IS NOT NULL And AcreageAnno IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCEL_NUM_wDEED_ACRE", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "left", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Tahoma", "size": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } } ] }, "defaultVisibility": true, "extent": { "xmin": -9556097.395, "ymin": 4020939.3795000017, "xmax": -9506542.3016, "ymax": 4099699.5437999964, "spatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -20037700, "falseY": -30241100, "xyUnits": 1.4892314192838538E8, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "SitusAddName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "pcliID", "type": "esriFieldTypeInteger", "alias": "pcliID", "domain": null }, { "name": "PPIN", "type": "esriFieldTypeDouble", "alias": "PPIN", "domain": null }, { "name": "PIN", "type": "esriFieldTypeString", "alias": "PIN", "length": 15, "domain": null }, { "name": "PARCELID", "type": "esriFieldTypeString", "alias": "PARCELID", "length": 40, "domain": null }, { "name": "ParcelID_GISlink", "type": "esriFieldTypeString", "alias": "ParcelID_GISlink", "length": 25, "domain": null }, { "name": "Owner", "type": "esriFieldTypeString", "alias": "Owner", "length": 40, "domain": null }, { "name": "MailAdd1", "type": "esriFieldTypeString", "alias": "MailAdd1", "length": 30, "domain": null }, { "name": "MailAdd2", "type": "esriFieldTypeString", "alias": "MailAdd2", "length": 30, "domain": null }, { "name": "MailAdd3", "type": "esriFieldTypeString", "alias": "MailAdd3", "length": 30, "domain": null }, { "name": "MailCity", "type": "esriFieldTypeString", "alias": "MailCity", "length": 16, "domain": null }, { "name": "MailState", "type": "esriFieldTypeString", "alias": "MailState", "length": 2, "domain": null }, { "name": "MailZip1", "type": "esriFieldTypeString", "alias": "MailZip1", "length": 5, "domain": null }, { "name": "MailZip2", "type": "esriFieldTypeString", "alias": "MailZip2", "length": 4, "domain": null }, { "name": "TTV", "type": "esriFieldTypeDouble", "alias": "TTV", "domain": null }, { "name": "TAV", "type": "esriFieldTypeDouble", "alias": "TAV", "domain": null }, { "name": "TimberAcres", "type": "esriFieldTypeDouble", "alias": "TimberAcres", "domain": null }, { "name": "UserValue", "type": "esriFieldTypeInteger", "alias": "UserValue", "domain": null }, { "name": "TaxDist", "type": "esriFieldTypeString", "alias": "TaxDist", "length": 4, "domain": null }, { "name": "FLAG1", "type": "esriFieldTypeString", "alias": "FLAG1", "length": 1, "domain": null }, { "name": "FLAG2", "type": "esriFieldTypeString", "alias": "FLAG2", "length": 1, "domain": null }, { "name": "FLAG3", "type": "esriFieldTypeString", "alias": "FLAG3", "length": 1, "domain": null }, { "name": "FLAG4", "type": "esriFieldTypeString", "alias": "FLAG4", "length": 1, "domain": null }, { "name": "FLAG5", "type": "esriFieldTypeString", "alias": "FLAG5", "length": 1, "domain": null }, { "name": "FLAG6", "type": "esriFieldTypeString", "alias": "FLAG6", "length": 1, "domain": null }, { "name": "SitusAddID", "type": "esriFieldTypeInteger", "alias": "SitusAddID", "domain": null }, { "name": "SitusAddName", "type": "esriFieldTypeString", "alias": "SitusAddName", "length": 30, "domain": null }, { "name": "SitusAddNumber", "type": "esriFieldTypeInteger", "alias": "SitusAddNumber", "domain": null }, { "name": "SitusAddCity", "type": "esriFieldTypeSmallInteger", "alias": "SitusAddCity", "domain": null }, { "name": "ImpDescrip", "type": "esriFieldTypeString", "alias": "ImpDescrip", "length": 60, "domain": null }, { "name": "PropertyClass", "type": "esriFieldTypeString", "alias": "PropertyClass", "length": 2, "domain": null }, { "name": "PropertySubClass", "type": "esriFieldTypeString", "alias": "PropertySubClass", "length": 3, "domain": null }, { "name": "SubLot", "type": "esriFieldTypeString", "alias": "SubLot", "length": 5, "domain": null }, { "name": "SubBlock", "type": "esriFieldTypeString", "alias": "SubBlock", "length": 5, "domain": null }, { "name": "PreviousOwner", "type": "esriFieldTypeString", "alias": "PreviousOwner", "length": 40, "domain": null }, { "name": "DeededAcres", "type": "esriFieldTypeDouble", "alias": "DeededAcres", "domain": null }, { "name": "CalcAcres", "type": "esriFieldTypeDouble", "alias": "CalcAcres", "domain": null }, { "name": "PIN_PID", "type": "esriFieldTypeString", "alias": "PIN_PID", "length": 288, "domain": null }, { "name": "Neighborhood", "type": "esriFieldTypeString", "alias": "Neighborhood", "length": 10, "domain": null }, { "name": "NeighborhoodSub", "type": "esriFieldTypeString", "alias": "NeighborhoodSub", "length": 13, "domain": null }, { "name": "LegalDescription", "type": "esriFieldTypeString", "alias": "LegalDescription", "length": 1219, "domain": null }, { "name": "TaxYearDue", "type": "esriFieldTypeSmallInteger", "alias": "TaxYearDue", "domain": null }, { "name": "TotalTaxDue", "type": "esriFieldTypeDouble", "alias": "TotalTaxDue", "domain": null }, { "name": "CImpValue", "type": "esriFieldTypeDouble", "alias": "CImpValue", "domain": null }, { "name": "CLandValue", "type": "esriFieldTypeDouble", "alias": "CLandValue", "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 }, { "name": "INSIDE_X", "type": "esriFieldTypeDouble", "alias": "INSIDE_X", "domain": null }, { "name": "INSIDE_Y", "type": "esriFieldTypeDouble", "alias": "INSIDE_Y", "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "Created By Record", "length": 38, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "Retired By Record", "length": 38, "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape" }, "indexes": [ { "name": "R4078_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S4065_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,Data", "maxRecordCount": 2000, "supportsStatistics": true, "supportsExceedsLimitStatistics": true, "supportsAdvancedQueries": true, "hasZ": 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": null, "preferredTimeReference": null, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriMeters" }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true }