{ "currentVersion": 11.0, "cimVersion": "3.0.0", "id": 144, "name": "TaxParcel", "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": -100000, "mUnits": 10000 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 70000, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 252, 221, 214, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 56, 168, 0, 255 ], "width": 0.7 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Jackson County is meant to stack the short version of the Parcel ID (PRODCO) above\r\n// the acreage (Anno_Acreage)\r\n\r\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\r\n\r\nvar name = $feature.PRODNO; // gives me 21-04-18-0-000-005.002\r\nvar shortName = Right(name, 7) // gives me 05.002\r\nvar wholePar = Left(shortName, 3) // gives me 05 \r\nvar whole = wholePar\r\n\r\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.\r\n\r\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\r\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\r\n\r\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\r\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\r\n\r\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \r\n// decimal component, and that they are not 000\r\n\r\nvar rem = Right(shortName, 3) // gives me 002\r\n\r\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\r\n// else concatenate \".\" with the first 3 of the 4 final digits\r\n\r\nvar frac = \"\"\r\n\r\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\r\n\r\nvar parcelID = whole + frac // gives me 05.002\r\n\r\n// now let's set the acreage so that it only displays if there are 5 or more acres\r\n// also, we will round the acreage to 1 decimal place\r\n\r\nvar acre = $feature.Anno_Acreage\r\n// var textAcre = \"\"\r\n\r\n// iif (acre >= 5, textAcre = Round(acre,1) + \" AC\", textAcre =\"\")\r\n\r\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + acre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\r\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "none", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "where": "SubType = 1 And Anno_Acreage IS NOT NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "Jackson_PRODNO_wAnno_Acreage", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "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" } } }, { "labelExpressionInfo": { "expression": "// this label expression Jackson County is meant to stack the short version of the Parcel ID (PRODCO) above\r\n// the acreage (Anno_Acreage)\r\n\r\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\r\n\r\nvar name = $feature.PRODNO; // gives me 21-04-18-0-000-005.002\r\nvar shortName = Right(name, 7) // gives me 05.002\r\nvar wholePar = Left(shortName, 3) // gives me 05 \r\nvar whole = wholePar\r\n\r\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.\r\n\r\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\r\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\r\n\r\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\r\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\r\n\r\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \r\n// decimal component, and that they are not 000\r\n\r\nvar rem = Right(shortName, 3) // gives me 002\r\n\r\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\r\n// else concatenate \".\" with the first 3 of the 4 final digits\r\n\r\nvar frac = \"\"\r\n\r\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\r\n\r\nvar parcelID = whole + frac // gives me 05.002\r\n\r\n// now let's set the acreage so that it only displays if there are 5 or more acres\r\n// also, we will round the acreage to 1 decimal place\r\n\r\nvar acre = $feature.ACRES\r\nvar textAcre = \"\"\r\n\r\niif (acre >= 5, textAcre = Round(acre,1) + \"Ac(c)\", textAcre =\"\")\r\n\r\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\r\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "none", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "where": "SubType = 1 And Deed_Acreage IS NULL And Anno_Acreage IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "Jackson_PRODNO_wACRES", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "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" } } }, { "labelExpressionInfo": { "expression": "// this label expression Jackson County is meant to stack the short version of the Parcel ID (PRODCO) above\r\n// the acreage (Deed_Acreage)\r\n\r\n// first create variables from the Name field value, let\u2019s use 13093100010160160 as an example\r\n\r\nvar name = $feature.PRODNO; // gives me 21-04-18-0-000-005.002\r\nvar shortName = Right(name, 7) // gives me 05.002\r\nvar wholePar = Left(shortName, 3) // gives me 05 \r\nvar whole = wholePar\r\n\r\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.\r\n\r\nvar leadDigit = Left(wholePar, 1); // gives me the first digit of the parcel number\r\nvar leadDigit2 = Left(wholePar, 2); // gives me the first two digit of the parcel number\r\n\r\nIIf((leadDigit == \"0\"), whole = Right(wholePar, 2),\"\");\r\nIIf((leadDigit2 == \"00\"), whole = Right(wholePar, 1),\"\");\r\n\r\n// next, let's process the last 3 characters of the Name field to see if the last 3 digits have a \r\n// decimal component, and that they are not 000\r\n\r\nvar rem = Right(shortName, 3) // gives me 002\r\n\r\n// if there is no decimal component, meaning the last 3 digits are (\"000\") then concatenate nothing\r\n// else concatenate \".\" with the first 3 of the 4 final digits\r\n\r\nvar frac = \"\"\r\n\r\niif (rem == \"000\", frac = \"\", frac = \".\" + (Left(rem,3))) // gives me 002\r\n\r\nvar parcelID = whole + frac // gives me 05.002\r\n\r\n// now let's set the acreage so that it only displays if there are 5 or more acres\r\n// also, we will round the acreage to 1 decimal place\r\n\r\nvar acre = $feature.Deed_Acreage\r\nvar textAcre = \"\"\r\n\r\niif (acre >= 5, textAcre = Round(acre,1) + \"Ac\", textAcre =\"\")\r\n\r\nreturn \"\" + parcelID + \"<\/BOL>\" + TextFormatting.NewLine + \"<_UND>\" + \"\" + textacre + \"<\/FNT>\" + \"<\/CLR><\/_UND>\"\r\n", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "none", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "all", "removeDuplicatesDistance": 0, "where": "SubType = 1 And Deed_Acreage IS NOT NULL And Anno_Acreage IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 10000, "name": "Jackson_PRODNO_wDeed_Acreage", "priority": -1, "symbol": { "type": "esriTS", "color": [ 76, 230, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "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": -9613465.2662, "ymin": 4091374.9104999974, "xmax": -9527077.7302, "ymax": 4162623.393899998, "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": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "Name", "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": "Name", "type": "esriFieldTypeString", "alias": "Name", "length": 255, "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 }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "Stated Area", "domain": null }, { "name": "StatedAreaUnit", "type": "esriFieldTypeInteger", "alias": "Stated Area Unit", "domain": null }, { "name": "CalculatedArea", "type": "esriFieldTypeDouble", "alias": "Calculated Area", "domain": null }, { "name": "MiscloseRatio", "type": "esriFieldTypeDouble", "alias": "Misclose Ratio", "domain": null }, { "name": "MiscloseDistance", "type": "esriFieldTypeDouble", "alias": "Misclose Distance", "domain": null }, { "name": "IsSeed", "type": "esriFieldTypeInteger", "alias": "Is Seed", "domain": null }, { "name": "created_user", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "created_date", "type": "esriFieldTypeDate", "alias": "Created Date", "length": 8, "domain": null }, { "name": "last_edited_user", "type": "esriFieldTypeString", "alias": "Modified By", "length": 255, "domain": null }, { "name": "last_edited_date", "type": "esriFieldTypeDate", "alias": "Modified Date", "length": 8, "domain": null }, { "name": "VALIDATIONSTATUS", "type": "esriFieldTypeSmallInteger", "alias": "Validation status", "domain": null }, { "name": "Join_Count", "type": "esriFieldTypeInteger", "alias": "Join_Count", "domain": null }, { "name": "TARGET_FID", "type": "esriFieldTypeInteger", "alias": "TARGET_FID", "domain": null }, { "name": "Join_Count_1", "type": "esriFieldTypeInteger", "alias": "Join_Count", "domain": null }, { "name": "TARGET_FID_1", "type": "esriFieldTypeInteger", "alias": "TARGET_FID", "domain": null }, { "name": "PRODNO", "type": "esriFieldTypeString", "alias": "PRODNO", "length": 23, "domain": null }, { "name": "SubType", "type": "esriFieldTypeInteger", "alias": "SubType", "domain": null }, { "name": "FEAT_SEQ", "type": "esriFieldTypeInteger", "alias": "FEAT_SEQ", "domain": null }, { "name": "PARCEL_NUM", "type": "esriFieldTypeString", "alias": "PARCEL_NUM", "length": 23, "domain": null }, { "name": "ACRES", "type": "esriFieldTypeDouble", "alias": "ACRES", "domain": null }, { "name": "Anno_Acreage", "type": "esriFieldTypeString", "alias": "Anno_Acreage", "length": 20, "domain": null }, { "name": "Lot_Anno", "type": "esriFieldTypeString", "alias": "Lot_Anno", "length": 5, "domain": null }, { "name": "TextString", "type": "esriFieldTypeString", "alias": "TextString", "length": 255, "domain": null }, { "name": "FTR_CODE", "type": "esriFieldTypeString", "alias": "FTR_CODE", "length": 25, "domain": null }, { "name": "MAPNAME", "type": "esriFieldTypeString", "alias": "MAPNAME", "length": 8, "domain": null }, { "name": "ORIG_FID", "type": "esriFieldTypeInteger", "alias": "ORIG_FID", "domain": null }, { "name": "offdir", "type": "esriFieldTypeString", "alias": "offdir", "length": 6, "domain": null }, { "name": "TextString_1", "type": "esriFieldTypeString", "alias": "TextString", "length": 255, "domain": null }, { "name": "ORIG_FID_1", "type": "esriFieldTypeInteger", "alias": "ORIG_FID", "domain": null }, { "name": "Deed_Acreage", "type": "esriFieldTypeString", "alias": "Deed_Acreage", "length": 20, "domain": null }, { "name": "Shape_Length", "type": "esriFieldTypeDouble", "alias": "Shape_Length", "domain": null }, { "name": "Shape_Area", "type": "esriFieldTypeDouble", "alias": "Shape_Area", "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, "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": false }, "supportsDatumTransformation": true, "dateFieldsTimeReference": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "preferredTimeReference": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape_Area", "shapeLengthFieldName": "Shape_Length", "units": "esriMeters" }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true }