{ "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 51, "name": "Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 2, "falseX": -20037700, "falseY": -30241100, "xyUnits": 10000, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "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 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 60000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 201, 252, 223, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 0, 0, 255 ], "width": 0.7 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression for Blount County is meant to stack the short version of the Parcel ID (ParcelNumber) above\n// the acreage (CalculatedAcreage)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // 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//when(acre >=10, textAcre = Round(acre,0) + \" Ac(c)\", acre >= 5, textAcre = Round(acre,1) +\" Ac(c)\", textAcre =\"\");\n\n//iif (acre >= 5, textAcre = Round(acre,1) + \" AC(c)\", textAcre =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": true, "stackLabel": true, "stackAlignment": "textSymbol", "removeDuplicates": "none", "stackRowLength": 24, "where": "AcreageAnno IS NOT NULL And (CreatedDate < '2100-04-29 17:37:22.000' Or ModifiedDate < '2100-04-29 17:37:40.000')", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "ParcelNumber_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 for Blount County is meant to stack the short version of the Parcel ID (ParcelNumber) above\n// the acreage (CalculatedAcreage)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // 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\nwhen(acre >=10, textAcre = Round(acre,0) + \" Ac(c)\", acre >= 5, textAcre = Round(acre,1) +\" Ac(c)\", textAcre =\"\");\n\n//iif (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": "none", "repeatLabel": false, "useClippedGeometry": true, "stackLabel": true, "stackAlignment": "textSymbol", "removeDuplicates": "none", "stackRowLength": 24, "where": "AcreageAnno IS NULL And (DeededArea IS NULL) And (CreatedDate < '2100-04-29 12:36:49.000' Or ModifiedDate < '2100-04-29 12:37:16.000')", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "ParcelNumber_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 for Blount County is meant to stack the short version of the Parcel ID (ParcelNumber) above\n// the acreage (CalculatedAcreage)\n\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\n\nvar name = $feature.PARCELID; // gives me 21-04-18-0-000-005.002\nvar shortName = Right(name, 6) // 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.DeededAcres\nvar textAcre = \"\"\n\n// when(acre >=10, textAcre = Round(acre,0) + \" Ac(c)\", acre >= 5, textAcre = Round(acre,1) +\" Ac(c)\", textAcre =\"\");\n\niif (acre >= 5, textAcre = Round(acre,2) + \" Ac\", textAcre =\"\")\n\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": true, "stackLabel": true, "stackAlignment": "textSymbol", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "stackRowLength": 24, "where": "DeededArea IS NOT NULL And AcreageAnno IS NULL And (CreatedDate < '2100-04-29 16:43:33.000' Or ModifiedDate < '2100-04-29 16:43:49.000')", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "ParcelNumber_wDeededArea", "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": null, "haloSize": null, "font": { "family": "Tahoma", "size": 12, "style": "normal", "weight": "bold", "decoration": "underline" } } } ] }, "defaultVisibility": true, "extent": { "xmin": -9629256.7509, "ymin": 3908952.898699999, "xmax": -9550613.7826, "ymax": 3988421.6416999996, "zmin": 0, "zmax": 0, "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": "OBJECTID_1", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null }, { "name": "PIN", "type": "esriFieldTypeInteger", "alias": "PIN", "domain": null }, { "name": "PARCELID", "type": "esriFieldTypeString", "alias": "PARCELID", "length": 255, "domain": null }, { "name": "PIN_PID", "type": "esriFieldTypeString", "alias": "PIN_PID", "length": 288, "domain": null }, { "name": "CALC_ACRE", "type": "esriFieldTypeDouble", "alias": "CALC_ACRE", "domain": null }, { "name": "AcreageAnno", "type": "esriFieldTypeString", "alias": "AcreageAnno", "length": 255, "domain": null }, { "name": "DeededArea", "type": "esriFieldTypeDouble", "alias": "DeededArea", "domain": null }, { "name": "CreatedDate", "type": "esriFieldTypeDate", "alias": "CreatedDate", "length": 8, "precision": 1, "domain": null }, { "name": "ModifiedDate", "type": "esriFieldTypeDate", "alias": "ModifiedDate", "length": 8, "precision": 1, "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "CreatedByRecord", "length": 38, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "RetiredByRecord", "length": 38, "domain": null }, { "name": "pcliID", "type": "esriFieldTypeInteger", "alias": "pcliID", "domain": null }, { "name": "PPIN", "type": "esriFieldTypeDouble", "alias": "PPIN", "domain": null }, { "name": "Owner", "type": "esriFieldTypeString", "alias": "Owner", "length": 256, "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": "esriFieldTypeInteger", "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": "FireDistCode", "type": "esriFieldTypeString", "alias": "FireDistCode", "length": 20, "domain": null }, { "name": "FireDist", "type": "esriFieldTypeString", "alias": "FireDist", "length": 150, "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_PIDc", "type": "esriFieldTypeString", "alias": "PIN_PIDc", "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": "Subdivision", "type": "esriFieldTypeString", "alias": "Subdivision", "length": 255, "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": "DeedBook", "type": "esriFieldTypeString", "alias": "DeedBook", "length": 25, "domain": null }, { "name": "DeedPage", "type": "esriFieldTypeString", "alias": "DeedPage", "length": 25, "domain": null }, { "name": "DeedRecorded", "type": "esriFieldTypeDate", "alias": "DeedRecorded", "length": 8, "precision": 1, "domain": null }, { "name": "DeedSigned", "type": "esriFieldTypeDate", "alias": "DeedSigned", "length": 8, "precision": 1, "domain": null }, { "name": "acctNum", "type": "esriFieldTypeString", "alias": "acctNum", "length": 15, "domain": null }, { "name": "exemption", "type": "esriFieldTypeString", "alias": "exemption", "length": 50, "domain": null }, { "name": "ZoningCode", "type": "esriFieldTypeString", "alias": "ZoningCode", "length": 20, "domain": null }, { "name": "ZoningDesc", "type": "esriFieldTypeString", "alias": "ZoningDesc", "length": 150, "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": "R1263_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S1252_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Query,Map,Data", "maxRecordCount": 2000, "maxSelectionCount": 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, "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": "Central Standard Time", "timeZoneIANA": "Etc/GMT+6", "respectsDaylightSaving": false }, "preferredTimeReference": { "timeZone": "Central Standard Time", "timeZoneIANA": "Etc/GMT+6", "respectsDaylightSaving": false }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriMeters", "mapUnits": {"uwkid": 9001} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "44022d1661c145309b38167788160330" }