{ "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 107, "name": "Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102630, "latestWkid": 102630, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -16478800, "falseY": -43705000, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "spatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -20037700, "falseY": -30241100, "xyUnits": 10000, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 20000, "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": [ 230, 0, 0, 255 ], "width": 1.5 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Cullman County is meant to stack the short version of the Parcel ID (ParcelNumber) above\n// the acreage (TextString)\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.TextString_Acreage\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": "none", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "TextString_Acreage IS NOT NULL And FCODE = 500", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_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 Lauderdale County is meant to stack the short version of the ParcelID (ParcelNumber) above\n// the acreage (TextString)\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": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "TextString_Acreage IS NULL And StatedArea IS NULL And FCODE = 500", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_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 Cullman County is meant to stack the short version of the ParcelID (ParcelNumber) above\n// the acreage (TextString)\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.StatedArea;\nvar acre2 = $feature.CALC_ACRE\nvar percentageDifference = Abs((acre - acre2) / acre) * 100;\nif (percentageDifference > 3) {\n\nvar textAcre = \"\"\nvar textAcre2 = \"\"\n\nwhen(acre2 >=10, textAcre = Round(acre2,0) + \" Ac(c)\", acre2 >= 5, textAcre = Round(acre2,1) +\" Ac(c)\", textAcre =\"\");\n\niif (acre >= 5, textAcre2 = Round(acre,1) + \" Ac\", textAcre2 =\"\")\n\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre2 + \"<\/FNT>\" + \"<\/CLR><\/_UND>\";\n} \n else {\n return \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \" Ac\" + \"<\/FNT>\" + \"<\/CLR><\/_UND>\";\n}\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "none", "repeatLabel": false, "useClippedGeometry": false, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "where": "StatedArea IS NOT NULL And CALC_ACRE IS NOT NULL And TextString_Acreage IS NULL And FCODE = 500", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wStatedArea_CALC_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": -9701650.925912287, "ymin": 4009336.588784449, "xmax": -9623659.367434219, "ymax": 4071017.914494221, "zmin": 0, "zmax": 0, "spatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -20037700, "falseY": -30241100, "xyUnits": 10000, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeNone", "displayField": "PIN", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "PIN", "type": "esriFieldTypeDouble", "alias": "PIN", "domain": null }, { "name": "PARCELID", "type": "esriFieldTypeString", "alias": "PARCELID", "length": 40, "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": "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": "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": "Subdivision", "type": "esriFieldTypeString", "alias": "Subdivision", "length": 255, "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": "MailCity", "type": "esriFieldTypeString", "alias": "MailCity", "length": 16, "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null }, { "name": "Shape_Area", "type": "esriFieldTypeDouble", "alias": "SHAPE.area", "domain": null }, { "name": "Shape_Length", "type": "esriFieldTypeDouble", "alias": "SHAPE.len", "domain": null }, { "name": "GIS_PARCELID", "type": "esriFieldTypeString", "alias": "GIS_PARCELID", "length": 255, "domain": null }, { "name": "acctNum", "type": "esriFieldTypeString", "alias": "acctNum", "length": 15, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "RetiredByRecord", "length": 38, "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "CreatedByRecord", "length": 38, "domain": null }, { "name": "Join_Count_Acreage", "type": "esriFieldTypeInteger", "alias": "Join_Count_Acreage", "domain": null }, { "name": "Join_Count_Lot", "type": "esriFieldTypeInteger", "alias": "Join_Count_Lot", "domain": null }, { "name": "CALC_ACRE", "type": "esriFieldTypeDouble", "alias": "CALC_ACRE", "domain": null }, { "name": "FCODE", "type": "esriFieldTypeInteger", "alias": "FCODE", "domain": null }, { "name": "TextString_Acreage", "type": "esriFieldTypeString", "alias": "TextString_Acreage", "length": 255, "domain": null }, { "name": "TextString_Lot", "type": "esriFieldTypeString", "alias": "TextString_Lot", "length": 255, "domain": null }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "StatedArea", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape" }, "indexes": [ { "name": "FDO_OBJECTID", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "FDO_Shape", "fields": "Shape", "isAscending": true, "isUnique": false, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Map,Query,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": false, "supportsCurrentUserQueries": true }, "supportsDatumTransformation": 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_Area", "shapeLengthFieldName": "Shape_Length", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true, "serviceItemId": "d002a73df0d14a65a3fe837572db4f69" }