{ "currentVersion": 11.5, "cimVersion": "3.5.0", "id": 103, "name": "Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 102100, "latestWkid": 3857, "xyTolerance": 0.001, "zTolerance": 0.001, "mTolerance": 0.001, "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": 10000, "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": [ 0, 0, 0, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 230, 0, 0, 255 ], "width": 1 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Limestone 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.PID; // 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 FOCDE = 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.PID; // 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,2) +\" 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", "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 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.PID; // 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 textAcre = \"\"\n\niif (acre >= 5, textAcre = Round(acre,2) + \" AC\", 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": "StatedArea IS NOT NULL And TextString_Acreage IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "PARCELID_wStatedArea", "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": -9715732.4446, "ymin": 4100337.8241000026, "xmax": -9660687.9297, "ymax": 4163774.6591000035, "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": "OwnerName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape", "domain": null }, { "name": "ParcelNo", "type": "esriFieldTypeString", "alias": "ParcelNo", "length": 50, "domain": null }, { "name": "CALC_ACRE", "type": "esriFieldTypeDouble", "alias": "CALC_ACRE", "domain": null }, { "name": "RecordYear", "type": "esriFieldTypeInteger", "alias": "RecordYear", "domain": null }, { "name": "OwnerName", "type": "esriFieldTypeString", "alias": "OwnerName", "length": 255, "domain": null }, { "name": "OwnerName2", "type": "esriFieldTypeString", "alias": "OwnerName2", "length": 255, "domain": null }, { "name": "MailAddress1", "type": "esriFieldTypeString", "alias": "MailAddress1", "length": 255, "domain": null }, { "name": "MailAddress2", "type": "esriFieldTypeString", "alias": "MailAddress2", "length": 255, "domain": null }, { "name": "MailCity", "type": "esriFieldTypeString", "alias": "MailCity", "length": 50, "domain": null }, { "name": "MailState", "type": "esriFieldTypeString", "alias": "MailState", "length": 20, "domain": null }, { "name": "MailZip", "type": "esriFieldTypeString", "alias": "MailZip", "length": 20, "domain": null }, { "name": "Neighborhood", "type": "esriFieldTypeString", "alias": "Neighborhood", "length": 100, "domain": null }, { "name": "AssessmentClass", "type": "esriFieldTypeString", "alias": "AssessmentClass", "length": 20, "domain": null }, { "name": "SubDiv1", "type": "esriFieldTypeString", "alias": "SubDiv1", "length": 100, "domain": null }, { "name": "SubDiv2", "type": "esriFieldTypeString", "alias": "SubDiv2", "length": 100, "domain": null }, { "name": "Book1", "type": "esriFieldTypeString", "alias": "Book1", "length": 20, "domain": null }, { "name": "Book2", "type": "esriFieldTypeString", "alias": "Book2", "length": 20, "domain": null }, { "name": "Page1", "type": "esriFieldTypeString", "alias": "Page1", "length": 20, "domain": null }, { "name": "Page2", "type": "esriFieldTypeString", "alias": "Page2", "length": 20, "domain": null }, { "name": "Lot1", "type": "esriFieldTypeString", "alias": "Lot1", "length": 20, "domain": null }, { "name": "Lot2", "type": "esriFieldTypeString", "alias": "Lot2", "length": 20, "domain": null }, { "name": "Block1", "type": "esriFieldTypeString", "alias": "Block1", "length": 20, "domain": null }, { "name": "Block2", "type": "esriFieldTypeString", "alias": "Block2", "length": 20, "domain": null }, { "name": "MunicipalityCode", "type": "esriFieldTypeString", "alias": "MunicipalityCode", "length": 20, "domain": null }, { "name": "PropertyAddr1", "type": "esriFieldTypeString", "alias": "PropertyAddr1", "length": 100, "domain": null }, { "name": "PropertyCity", "type": "esriFieldTypeString", "alias": "PropertyCity", "length": 50, "domain": null }, { "name": "PropertyState", "type": "esriFieldTypeString", "alias": "PropertyState", "length": 20, "domain": null }, { "name": "PropertyZip", "type": "esriFieldTypeString", "alias": "PropertyZip", "length": 20, "domain": null }, { "name": "ForestAcreage", "type": "esriFieldTypeDouble", "alias": "ForestAcreage", "domain": null }, { "name": "TotalLandValue", "type": "esriFieldTypeDouble", "alias": "TotalLandValue", "domain": null }, { "name": "TotalImpValue", "type": "esriFieldTypeDouble", "alias": "TotalImpValue", "domain": null }, { "name": "TotalValue", "type": "esriFieldTypeDouble", "alias": "TotalValue", "domain": null }, { "name": "PID", "type": "esriFieldTypeString", "alias": "PID", "length": 50, "domain": null }, { "name": "OBJECTID_1", "type": "esriFieldTypeInteger", "alias": "OBJECTID", "domain": null }, { "name": "CreatedByRecord", "type": "esriFieldTypeGUID", "alias": "CreatedByRecord", "length": 38, "domain": null }, { "name": "RetiredByRecord", "type": "esriFieldTypeGUID", "alias": "RetiredByRecord", "length": 38, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "last_edited_user", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "last_edited_date", "length": 8, "precision": 1, "domain": null }, { "name": "last_edited_user1", "type": "esriFieldTypeString", "alias": "last_edited_user1", "length": 255, "domain": null }, { "name": "last_edited_date1", "type": "esriFieldTypeDate", "alias": "last_edited_date1", "length": 8, "precision": 1, "domain": null }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "StatedArea", "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": "TextString_Acreage", "type": "esriFieldTypeString", "alias": "TextString_Acreage", "length": 255, "domain": null }, { "name": "TextString_Lot", "type": "esriFieldTypeString", "alias": "TextString_Lot", "length": 255, "domain": null }, { "name": "TIFDist", "type": "esriFieldTypeString", "alias": "TIFDist", "length": 50, "domain": null }, { "name": "FOCDE", "type": "esriFieldTypeInteger", "alias": "FCODE", "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": "R231_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S215_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "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": true, "supportsCurrentUserQueries": true }, "supportsDatumTransformation": true, "advancedQueryAnalyticCapabilities": { "supportsLinearRegression": true, "supportsAsync": false, "supportsPercentileAnalytic": true }, "dateFieldsTimeReference": { "timeZone": "Central Standard Time", "timeZoneIANA": "America/Chicago", "respectsDaylightSaving": true }, "preferredTimeReference": { "timeZone": "Central Standard Time", "timeZoneIANA": "America/Chicago", "respectsDaylightSaving": true }, "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": "da0bfd5ab50e4106b4443b47cdc3153b" }