{ "currentVersion": 11.0, "cimVersion": "3.0.0", "id": 31, "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 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 50000, "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.25 } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// this label expression Baldwinn County is meant to stack the short version of the Parcel ID (PID) above\r\n// the acreage (AcreageAnno)\r\n\r\nvar localPid, extender;\r\nextender = \"\"\r\nif ($feature.IsSeed != 1){\r\n if (! IsEmpty($feature.PID)){\r\n localPid = $feature.PID\r\n if (Count(localPid) >= 4){\r\n extender = Right(localPid,4)\r\n if (Left(extender,1) != \"-\"){\r\n extender = \"\"\r\n }\r\n }\r\n }\r\n}\r\nif (extender != \"\") { // customize the string to include extender\r\n if (Count ($feature.PID) >= 11) {\r\n return \"\" + Right ($feature.PID, 11) + \"<\/UND>\"\r\n }\r\n} // Otherwise run original script\r\n\r\n// first create variables from the Name field value, let\u2019s use 05-02-04-18-0-000-001.000 as an example\r\n\r\nvar name = $feature.PID; // 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.AcreageAnno\r\n// var textAcre = \"\"\r\n\r\n// iif (acre >= 5, textAcre = Round(acre,1) + \" AC\", textAcre =\"\")\r\n\r\nreturn \"\" + parcelID + extender + \"<\/UND>\" + TextFormatting.NewLine + \"\" + acre + \"<\/CLR>\"\r\n", "title": "BC_PID_AcANNO" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 2 And AcreageAnno IS NOT NULL", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "BC_PID_AcAnno", "priority": -1, "symbol": { "type": "esriTS", "color": [ 56, 168, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Calibri", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// this label expression Baldwinn County is meant to stack the short version of the Parcel ID (PID) above\r\n// the acreage (AcreageAnno)\r\nvar localPid, extender;\r\nextender = \"\"\r\nif ($feature.IsSeed != 1){\r\n if (! IsEmpty($feature.PID)){\r\n localPid = $feature.PID\r\n if (Count(localPid) >= 4){\r\n extender = Right(localPid,4)\r\n if (Left(extender,1) != \"-\"){\r\n extender = \"\"\r\n }\r\n }\r\n }\r\n}\r\nif (extender != \"\") { // customize the string to include extender\r\n if (Count ($feature.PID) >= 11) {\r\n return \"\" + Right ($feature.PID, 11) + \"<\/UND>\"\r\n }\r\n} // Otherwise run original script\r\n\r\n// first create variables from the Name field value, let\u2019s use 05-02-04-18-0-000-001.000 as an example\r\n\r\nvar name = $feature.PID; // 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.CalcAcre\r\nvar textAcre = \"\"\r\n//var textAcre3 = \"\"\r\n\r\nwhen(acre >=10, textAcre = Round(acre,0) + \" Ac(c)\", acre >= 5, textAcre = Round(acre,1) +\" Ac(c)\", textAcre =\"\");\r\n\r\n//iif(acre >= 5 && acre <=10, textAcre = Round(acre,1) + \" Ac(c)\", textAcre =\"\")\r\n//iif(acre >= 10, textAcre3 = Round(acre,0) + \" Ac(c)\", textAcre3 =\"\")\r\n\r\nreturn \"\" + parcelID + extender + \"<\/UND>\" + TextFormatting.NewLine + \"\" + textAcre + \"<\/CLR>\"\r\n\r\n//return \"\" + parcelID + extender + \"<\/UND>\" + TextFormatting.NewLine + \"\" + textAcre + \"<\/CLR>\"\r\n", "title": "BC_PID_CALAc" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 2 And AcreageAnno IS NULL And StatedArea IS NULL", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "BC_PID_CALCa", "priority": -1, "symbol": { "type": "esriTS", "color": [ 56, 168, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Calibri", "size": 12, "style": "normal", "weight": "normal", "decoration": "none" } } }, { "labelExpressionInfo": { "expression": "// this label expression Baldwinn County is meant to stack the short version of the Parcel ID (PID) above\r\n// the acreage (DeedAcreage)\r\n\r\nvar localPid, extender;\r\nextender = \"\"\r\nif ($feature.IsSeed != 1){\r\n if (! IsEmpty($feature.PID)){\r\n localPid = $feature.PID\r\n if (Count(localPid) >= 4){\r\n extender = Right(localPid,4)\r\n if (Left(extender,1) != \"-\"){\r\n extender = \"\"\r\n }\r\n }\r\n }\r\n}\r\nif (extender != \"\") { // customize the string to include extender\r\n if (Count ($feature.PID) >= 11) {\r\n return \"\" + Right ($feature.PID, 11) + \"<\/UND>\"\r\n }\r\n} // Otherwise run original script\r\n\r\n// first create variables from the Name field value, let\u2019s use 05-02-04-18-0-000-001.000 as an example\r\n\r\nvar name = $feature.PID; // 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.StatedArea\r\nvar textAcre = \"\"\r\n\r\niif (acre >= 5, textAcre = Round(acre,1) + \" Ac \", textAcre =\"\")\r\n\r\nreturn \"\" + parcelID + extender + \"<\/UND>\" + TextFormatting.NewLine + \"\" + textAcre + \"<\/CLR>\"", "title": "BC_PID_STATAc" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": false, "deconflictionStrategy": "dynamic", "repeatLabel": false, "stackLabel": true, "stackRowLength": 24, "stackAlignment": "dynamic", "removeDuplicates": "none", "where": "SubType = 2 And AcreageAnno IS NULL And StatedArea IS NOT NULL", "useCodedValues": true, "maxScale": 0, "minScale": 7500, "name": "BC_PID_STATAc", "priority": -1, "symbol": { "type": "esriTS", "color": [ 56, 168, 0, 255 ], "backgroundColor": null, "borderLineColor": null, "borderLineSize": null, "verticalAlignment": "bottom", "horizontalAlignment": "center", "rightToLeft": false, "angle": 0, "xoffset": 0, "yoffset": 0, "kerning": true, "haloColor": [ 255, 255, 255, 255 ], "haloSize": 1, "font": { "family": "Calibri", "size": 12, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": -9799376.5808, "ymin": 3532277.2043000013, "xmax": -9728092.6624, "ymax": 3674156.0486999974, "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": "SitusAddName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "PIN", "type": "esriFieldTypeString", "alias": "PIN", "length": 30, "domain": null }, { "name": "PINPAD", "type": "esriFieldTypeString", "alias": "PINPAD", "length": 35, "domain": null }, { "name": "PID", "type": "esriFieldTypeString", "alias": "PID", "length": 30, "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": "CalcAcre", "type": "esriFieldTypeDouble", "alias": "CalcAcre", "domain": null }, { "name": "pcliID", "type": "esriFieldTypeInteger", "alias": "pcliID", "domain": null }, { "name": "PPIN", "type": "esriFieldTypeDouble", "alias": "PPIN", "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": "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": "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": 10, "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": "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, "domain": null }, { "name": "DeedSigned", "type": "esriFieldTypeDate", "alias": "DeedSigned", "length": 8, "domain": null }, { "name": "acctNum", "type": "esriFieldTypeString", "alias": "acctNum", "length": 15, "domain": null }, { "name": "exemption", "type": "esriFieldTypeString", "alias": "exemption", "length": 50, "domain": null }, { "name": "AssessedRate", "type": "esriFieldTypeString", "alias": "AssessedRate", "length": 11, "domain": null }, { "name": "SubdivisionCode", "type": "esriFieldTypeString", "alias": "SubdivisionCode", "length": 200, "domain": null }, { "name": "ZoningCode", "type": "esriFieldTypeString", "alias": "ZoningCode", "length": 20, "domain": null }, { "name": "ZoningDesc", "type": "esriFieldTypeString", "alias": "ZoningDesc", "length": 150, "domain": null }, { "name": "HasCurrentUse", "type": "esriFieldTypeString", "alias": "HasCurrentUse", "length": 5, "domain": null }, { "name": "CurrentUseValue", "type": "esriFieldTypeDouble", "alias": "CurrentUseValue", "domain": null }, { "name": "StatedArea", "type": "esriFieldTypeDouble", "alias": "StatedArea", "domain": null }, { "name": "AcreageAnno", "type": "esriFieldTypeString", "alias": "AcreageAnno", "length": 50, "domain": null }, { "name": "SubType", "type": "esriFieldTypeInteger", "alias": "SubType", "domain": null }, { "name": "IsSeed", "type": "esriFieldTypeInteger", "alias": "IsSeed", "domain": null } ], "geometryField": { "name": "Shape", "type": "esriFieldTypeGeometry", "alias": "Shape" }, "indexes": [ { "name": "R10796_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S10788_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "description": "" } ], "subtypes": [], "relationships": [], "canModifyLayer": true, "canScaleSymbols": false, "hasLabels": true, "capabilities": "Query,Map,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": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "preferredTimeReference": { "timeZone": "Central Standard Time", "respectsDaylightSaving": false }, "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 }