{ "layers": [ { "currentVersion": 11.2, "cimVersion": "3.2.0", "id": 0, "name": "Caltrans ROW Operational Limits", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolyline", "sourceSpatialReference": { "wkid": 103005, "latestWkid": 6420, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -115860600, "falseY": -93269500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 0, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "simple", "symbol": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 0, 0, 255 ], "width": 2 } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "// Change the settings portion to configure direction format, color, rounding and abbreviations\n// This is an Arcade expression\n\n// SETTINGS\nvar QuadrantBearingFormat = true; //set 'true' for quadrant bearing, 'false' for north azimuth\nvar ShowDistance = true; //set as 'true' to show distance\nvar ShowDirection = true; //set as 'true' to show direction\nvar DirectionType = 1; // 1 = Quadrant Bearing; 2 = North Azimuth; 3 = South Azimuth\nvar ShowRadius = true; //set as 'true' to show radius\nvar ShowCurveParameter = true; //set as 'true' to show a curve parameter\nvar CurveParameter = \"ArcLength\"; //set as 'ArcLength' or 'Chord' or 'Angle' for central angle. Case sensitive!\nvar ErrorString = \"COGO ERROR\"; //set to display invalid COGO combinations\nvar RadiusAbbr = 'R='; //radius abbreviation\nvar Radius2Abbr = 'R2='; //radius2 abbreviation for spiral curves\nvar ArclengthAbrr = 'L='; //arclength abbreviation\nvar ChordAbbr = 'C='; //chord abbreviation\nvar AngleAbbr = 'A='; //central Angle abbreviation\nvar DistUnitRounding = 2; //number of decimal places for distance units: distance, radius, arclength & chord\nvar NumberFormat = \"#,###.00\" //number format. In this example: thousands separator with padding of 2 zeros \nvar directionColor = \"blue='255'\"; //direction color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar distanceColor = \"black='255'\"; //distance color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar radiusColor = \"blue='255'\"; //radius color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar curveParamColor = \"black='255'\"; //curve parameter color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar partialCOGOColor = \"magenta='255'\"; //partial COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar invalidCOGOColor = \"red='255'\"; //invalid COGO color: red, green, blue, cyan, magenta, yellow, black. You can also use RGB or CYMK combinations.\nvar fontNameSize = \"\"; //font type and size\n\n// VARIABLES\nvar cogo_direction = $feature.Direction;\nvar cogo_distance = $feature.Distance;\nvar cogo_radius = $feature.Radius;\nvar cogo_arclength = $feature.Arclength;\nvar cogo_radius2 = $feature.Radius2\nvar binaryDictionary; //binary dictionary to check COGO combinations\nvar checksum = 0; //initialize checksum\nvar validValuesArray; //array of valid values for COGO combinations\nvar partialValuesArray; //array of partial values for COGO\nvar degrees;\nvar minutes;\nvar seconds;\nvar DMS;\nvar directionStr = \"\"; //direction string using for label\nvar distanceStr = \"\"; //distance string using for label\nvar radiusStr = \"\"; //radius string using for label\nvar radius2Str = \"\"; //radius2 string using for labeling spiral curves\nvar curveStr = \"\"; //curve parameter string using for label\nvar angleRad; //curve angle in radians\nvar COGOValidity; //COGO combinations validity. can be valid, partial or invalid.\n\n\nif (IsEmpty(cogo_direction) && IsEmpty(cogo_distance) && IsEmpty(cogo_radius) && IsEmpty(cogo_radius2) && IsEmpty(cogo_arclength)){\n return \"\"\n}\n\nfunction NorthAzimuth2Quadbearing(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'Quadrant', angleType: 'DMS', outputType: 'text', format: 'pd[°]mm[\\']ss[\"]b'})\n}\n\nfunction DMS_North(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'North', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction DMS_South(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'South', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2) {\n binaryDictionary= Dictionary('dir', 1, 'dist',2, 'rad',4, 'arc',8, 'rad2',16)\n if (!IsEmpty(cogo_direction)) {checksum+=binaryDictionary.dir}\n if (!IsEmpty(cogo_distance)) {checksum+=binaryDictionary.dist}\n if (!IsEmpty(cogo_radius)) {checksum+=binaryDictionary.rad}\n if (!IsEmpty(cogo_arclength)) {checksum+=binaryDictionary.arc}\n if (!IsEmpty(cogo_radius2)) {checksum+=binaryDictionary.rad2}\n \n validValuesArray=[0,3,13,29]; //array of valid combinations: '0' for nothing, ... '13' for direction & radius & arclength ...\n partialValuesArray=[1,2,4,5,8,9,12,16,17,20,21,24,25,27,28]; //array of partial combinations: '1' for only direction, '2' for only distance, '4' for only radius...\n //Invalid Values = [6,7,10,11,14,15,18,19,22,23,26,30,31]\n \n if (IndexOf(validValuesArray,checksum)>-1) { // a negative value is returned if checksum value is not in the a valid combination array\n return \"valid\";\n }\n if (IndexOf(partialValuesArray,checksum)>-1){\n return \"partial\"; \n }\n return \"invalid\";\n}\n\nCOGOValidity = IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2);\nif ( COGOValidity == \"invalid\") { //if invalid COGO return error string\n return \"\" + fontNameSize + ErrorString + \"<\/FNT><\/CLR><\/BOL>\"; \n}\n\nif (COGOValidity == \"partial\") { //if a partial COGO change colors\n distanceColor = partialCOGOColor;\n directionColor = partialCOGOColor;\n radiusColor = partialCOGOColor;\n curveParamColor = partialCOGOColor;\n}\n\n// Direction string\nif (ShowDirection) {\n if (IsEmpty(cogo_direction)==false) {\n if (DirectionType == 1) { //using quadrant bearing format\n directionStr = NorthAzimuth2Quadbearing(cogo_direction);\n }\n else if (DirectionType == 2) { //using north azimuth format\n directionStr = DMS_North(cogo_direction);\n }\n else if (DirectionType == 3) { //using south azimuth format\n directionStr = DMS_South(cogo_direction);\n }\n }\n}\n\n// Distance string\nif (ShowDistance) {\n if (IsEmpty(cogo_distance)==false) {\n distanceStr = text(round(cogo_distance,DistUnitRounding), NumberFormat);\n }\n}\n\n//Radius String\nif (ShowRadius) {\n if (!IsEmpty(cogo_radius)) { //it can be a curve or a spiral\n if (IsEmpty(cogo_radius2)) { //if radius2 is empty this is a curve\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding), NumberFormat);\n }\n else { // it is a spiral\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding),NumberFormat);\n radius2Str = Radius2Abbr + \" \" + text(round(cogo_radius2, DistUnitRounding),NumberFormat);\n if (cogo_radius == 0) { //substitute to infinity sign\n radiusStr = RadiusAbbr + \" ∞ \";\n }\n if (cogo_radius2 == 0) { //substitute to infinity sign\n radius2Str = Radius2Abbr + \" ∞ \";\n }\n } \n \n }\n}\n\n// Curve Parameter\nif (ShowCurveParameter) {\n if (!IsEmpty(cogo_arclength)) {\n if (CurveParameter == 'ArcLength') {\n curveStr = text(round(cogo_arclength, DistUnitRounding), NumberFormat); //return Arc length\n }\n angleRad = cogo_arclength/(abs(cogo_radius)) //calculate angle in radians\n if (CurveParameter == 'Angle') {\n curveStr = DMS_North(angleRad * 180 / pi); // convert radian to degrees and show as DMS\n }\n if (CurveParameter == 'Chord') {\n curveStr = text(round((2 * abs(cogo_radius) * Sin(angleRad/2)),DistUnitRounding), NumberFormat); //calculate chord length\n } \n }\n}\n\n//Determine type of curve displayed\nvar CurveTypePrefix = \"\"\nif (!IsEmpty(curveStr)){\n if (CurveParameter == 'ArcLength'){\n CurveTypePrefix = ArclengthAbrr\n }\n else if (CurveParameter == 'Angle'){\n CurveTypePrefix = AngleAbbr\n }\n else if (CurveParameter == 'Chord'){\n CurveTypePrefix = ChordAbbr\n }\n}\n\nvar isStraightLine = IsEmpty(radiusStr) && IsEmpty(radius2Str) && IsEmpty(curveStr)\n\n// Assemble label string\n\n//Straight lines\nif (isStraightLine){\n if (!IsEmpty(directionStr) && !IsEmpty(distanceStr)){ //If Direction and Distance are both NOT Empty\n return fontNameSize + \"\" + directionStr + \"<\/CLR>\" + \"\\n\" +\n \"\" + distanceStr + \"<\/CLR><\/FNT>\";\n }\n else if (IsEmpty(directionStr)){ //If Direction is empty\n return fontNameSize + \"\" +\n distanceStr + \"<\/CLR><\/FNT>\";\n }\n else{ //If Distance is empty\n return fontNameSize + \"\" + directionStr + \"<\/CLR><\/FNT>\";\n }\n}\n\n//Curves\n//If one or both radii and the curve string are NOT empty show the full curve\nif ((!IsEmpty(radiusStr) || !IsEmpty(radius2Str)) && !IsEmpty(curveStr)){\n return fontNameSize + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR>\" + \"\\n\" +\n \"\" + CurveTypePrefix + ' ' +\n curveStr + \"<\/CLR><\/FNT>\";\n}\n//If the curve is empty\nelse if (IsEmpty(curveStr)){\n return fontNameSize + \"\" + radiusStr + \"<\/CLR>\" + \" \" +\n \"\" + radius2Str + \"<\/CLR><\/FNT>\"\n}\n//If both radius are empty\nelse{\n return fontNameSize + \"\" + CurveTypePrefix + ' ' +\n curveStr + \"<\/CLR><\/FNT>\";\n}", "title": "DirectionAndDistance" }, "lineOrientation": "direction", "labelPlacement": "esriServerLinePlacementBelowStart", "textLayout": "followFeature", "deconflictionStrategy": "static", "lineConnection": "none", "multiPart": "labelPerFeature", "useClippedGeometry": true, "offsetDistance": 3, "stackLabel": false, "removeDuplicates": "none", "useCodedValues": false, "maxScale": 0, "minScale": 2000, "name": "Direction and Distance", "priority": -1, "symbol": { "type": "esriTS", "color": [ 0, 0, 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": 2, "font": { "family": "Tahoma", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": 6143853.481746718, "ymin": 2053867.236086309, "xmax": 6219419.054040477, "ymax": 2087688.3830108047, "spatialReference": { "wkid": 103005, "latestWkid": 6420, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -115860600, "falseY": -93269500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayFieldExpressionInfo": { "expression": "// Change the settings portion to configure direction format, rounding and abbreviations\n// This is an Arcade expression\n\n// SETTINGS\nvar ShowDistance = true; //set as 'true' to show distance\nvar ShowDirection = true; //set as 'true' to show direction\nvar DirectionType = 1; // 1 = Quadrant Bearing; 2 = North Azimuth; 3 = South Azimuth\nvar ShowRadius = true; //set as 'true' to show radius\nvar ShowCurveParameter = true; //set as 'true' to show a curve parameter\nvar CurveParameter = \"ArcLength\"; //set as 'ArcLength' or 'Chord' or 'Angle' for central angle. Case sensitive!\nvar ErrorString = \"COGO ERROR\"; //set to display invalid COGO combinations\nvar RadiusAbbr = 'R='; //radius abbreviation\nvar Radius2Abbr = 'R2='; //radius2 abbreviation for spiral curves\nvar ArclengthAbrr = 'L='; //arclength abbreviation\nvar ChordAbbr = 'C='; //chord abbreviation\nvar AngleAbbr = 'A='; //central Angle abbreviation\nvar DistUnitRounding = 2; //number of decimal places for distance units: distance, radius, arclength & chord\nvar NumberFormat = \"#,###.00\" //number format. In this example: thousands separator with padding of 2 zeros\n\n// VARIABLES\nvar cogo_direction = $feature.Direction;\nvar cogo_distance = $feature.Distance;\nvar cogo_radius = $feature.Radius;\nvar cogo_arclength = $feature.Arclength;\nvar cogo_radius2 = $feature.Radius2\nvar binaryDictionary; //binary dictionary to check COGO combinations\nvar checksum = 0; //initialize checksum\nvar validValuesArray; //array of valid values for COGO combinations\nvar partialValuesArray; //array of partial values for COGO\nvar directionStr = \"\"; //direction string using for label\nvar distanceStr = \"\"; //distance string using for label\nvar radiusStr = \"\"; //radius string using for label\nvar radius2Str = \"\"; //radius2 string using for labeling spiral curves\nvar curveStr = \"\"; //curve parameter string using for label\nvar angleRad; //curve angle in radians\nvar COGOValidity; //COGO combinations validity. can be valid, partial or invalid.\n\nif (IsEmpty(cogo_direction) && IsEmpty(cogo_distance) && IsEmpty(cogo_radius) && IsEmpty(cogo_radius2) && IsEmpty(cogo_arclength)){\n return \"\"\n}\n\nfunction NorthAzimuth2Quadbearing(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'Quadrant', angleType: 'DMS', outputType: 'text', format: 'pd[°]mm[\\']ss[\"]b'})\n}\n\nfunction DMS_North(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'North', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction DMS_South(azimuth){\n return ConvertDirection(azimuth, {directionType:'North', angleType: 'Degrees'}, {directionType:'South', angleType: 'DMS', outputType: 'text', format: 'd[°]mm[\\']ss[\"]'})\n}\n\nfunction IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2) {\n binaryDictionary= Dictionary('dir', 1, 'dist',2, 'rad',4, 'arc',8, 'rad2',16)\n if (!IsEmpty(cogo_direction)) {checksum+=binaryDictionary.dir}\n if (!IsEmpty(cogo_distance)) {checksum+=binaryDictionary.dist}\n if (!IsEmpty(cogo_radius)) {checksum+=binaryDictionary.rad}\n if (!IsEmpty(cogo_arclength)) {checksum+=binaryDictionary.arc}\n if (!IsEmpty(cogo_radius2)) {checksum+=binaryDictionary.rad2}\n \n validValuesArray=[0,3,13,29]; //array of valid combinations: '0' for nothing, ... '13' for direction & radius & arclength ...\n partialValuesArray=[1,2,4,5,8,9,12,16,17,20,21,24,25,27,28]; //array of partial combinations: '1' for only direction, '2' for only distance, '4' for only radius...\n //Invalid Values = [6,7,10,11,14,15,18,19,22,23,26,30,31]\n\n if (IndexOf(validValuesArray,checksum)>-1) { // a negative value is returned if checksum value is not in the a valid combination array\n return \"valid\";\n }\n if (IndexOf(partialValuesArray,checksum)>-1){\n return \"partial\";\n }\n return \"invalid\";\n}\n\nfunction COGOTypePrefixPostfix(cogotypeValue){\n if (ShowCOGOType){\n if (cogotypeValue == 1) { //Entered\n return COGOType_Entered\n }\n else if(cogotypeValue == 2) { //From Geometry\n return COGOType_FromGeom\n }\n else if(cogotypeValue == 3) { //Computed\n return COGOType_Computed\n }\n else { //If not set or invalid value\n return ['', '']\n }\n }\n else{\n return(['', ''])\n }\n}\n\nCOGOValidity = IsValidCOGO(cogo_direction, cogo_distance, cogo_radius, cogo_arclength, cogo_radius2);\nif ( COGOValidity == \"invalid\") { //if invalid COGO return error string\n return ErrorString;\n}\n\n\n// Direction string\nif (ShowDirection) {\n if (IsEmpty(cogo_direction)==false) {\n if (DirectionType == 1) { //using quadrant bearing format\n directionStr = NorthAzimuth2Quadbearing(cogo_direction);\n }\n else if (DirectionType == 2) { //using north azimuth format\n directionStr = DMS_North(cogo_direction);\n }\n else if (DirectionType == 3) { //using south azimuth format\n directionStr = DMS_South(cogo_direction);\n }\n }\n}\n\n// Distance string\nif (ShowDistance) {\n if (IsEmpty(cogo_distance)==false) {\n distanceStr = text(round(cogo_distance,DistUnitRounding), NumberFormat);\n }\n}\n\n//Radius String\nif (ShowRadius) {\n if (!IsEmpty(cogo_radius)) { //it can be a curve or a spiral\n if (IsEmpty(cogo_radius2)) { //if radius2 is empty this is a curve\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding), NumberFormat);\n }\n else { // it is a spiral\n radiusStr = RadiusAbbr + \" \" + text(round(cogo_radius, DistUnitRounding),NumberFormat);\n radius2Str = Radius2Abbr + \" \" + text(round(cogo_radius2, DistUnitRounding),NumberFormat);\n if (cogo_radius == 0) { //substitute to infinity sign\n radiusStr = RadiusAbbr + \" ∞ \";\n }\n if (cogo_radius2 == 0) { //substitute to infinity sign\n radius2Str = Radius2Abbr + \" ∞ \";\n }\n }\n\n }\n}\n\n// Curve Parameter\nif (ShowCurveParameter) {\n if (!IsEmpty(cogo_arclength)) {\n if (CurveParameter == 'ArcLength') {\n curveStr = text(round(cogo_arclength, DistUnitRounding), NumberFormat); //return Arc length\n }\n angleRad = cogo_arclength/(abs(cogo_radius)) //calculate angle in radians\n if (CurveParameter == 'Angle') {\n curveStr = DMS_North(angleRad * 180 / pi); // convert radian to degrees and show as DMS\n }\n if (CurveParameter == 'Chord') {\n curveStr = text(round((2 * abs(cogo_radius) * Sin(angleRad/2)),DistUnitRounding), NumberFormat); //calculate chord length\n }\n }\n}\n\n//Determine type of curve displayed\nvar CurveTypePrefix = \"\"\nif (!IsEmpty(curveStr)){\n if (CurveParameter == 'ArcLength'){\n CurveTypePrefix = ArclengthAbrr\n }\n else if (CurveParameter == 'Angle'){\n CurveTypePrefix = AngleAbbr\n }\n else if (CurveParameter == 'Chord'){\n CurveTypePrefix = ChordAbbr\n }\n}\n\nvar isStraightLine = IsEmpty(radiusStr) && IsEmpty(radius2Str) && IsEmpty(curveStr)\n\n\n// Assemble label string\nif (isStraightLine){\n if (!IsEmpty(directionStr) && !IsEmpty(distanceStr)){ //If Direction and Distance are both NOT Empty\n return directionStr + ' ' + distanceStr;\n }\n else if (IsEmpty(directionStr)){ //If Direction is empty\n return distanceStr;\n }\n else{ //If Distance is empty\n return directionStr\n }\n}\n\n//Curves\n//If one or both radii and the curve string are NOT empty show the full curve\nif ((!IsEmpty(radiusStr) || !IsEmpty(radius2Str)) && !IsEmpty(curveStr)){\n return radiusStr + \" \" + radius2Str + ' ' + CurveTypePrefix + ' ' + curveStr;\n}\n//If the curve is empty\nelse if (IsEmpty(curveStr)){\n return radiusStr + \" \" + radius2Str\n}\n//If both radius are empty\nelse{\n return CurveTypePrefix + ' ' + curveStr;\n}\n\n\n", "title": "Custom" }, "displayField": "Source", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "Direction", "type": "esriFieldTypeDouble", "alias": "Direction", "domain": null }, { "name": "Distance", "type": "esriFieldTypeDouble", "alias": "Distance", "domain": null }, { "name": "Radius", "type": "esriFieldTypeDouble", "alias": "Radius", "domain": null }, { "name": "ArcLength", "type": "esriFieldTypeDouble", "alias": "Arc Length", "domain": null }, { "name": "Radius2", "type": "esriFieldTypeDouble", "alias": "Radius2", "domain": null }, { "name": "FeatureID", "type": "esriFieldTypeInteger", "alias": "FeatureID", "domain": null }, { "name": "Source", "type": "esriFieldTypeString", "alias": "Source", "length": 255, "domain": null }, { "name": "SourceDate", "type": "esriFieldTypeDate", "alias": "Source Date", "length": 8, "domain": null }, { "name": "SourceDocURL", "type": "esriFieldTypeString", "alias": "Source Doc URL", "length": 255, "domain": null }, { "name": "SourceNotes", "type": "esriFieldTypeString", "alias": "Source Notes", "length": 255, "domain": null }, { "name": "CreateDate", "type": "esriFieldTypeDate", "alias": "Create Date", "length": 8, "domain": null }, { "name": "CreatedBy", "type": "esriFieldTypeString", "alias": "Created By", "length": 255, "domain": null }, { "name": "RevDate", "type": "esriFieldTypeDate", "alias": "Rev Date", "length": 8, "domain": null }, { "name": "RevBy", "type": "esriFieldTypeString", "alias": "RevBy", "length": 255, "domain": null }, { "name": "RevComments", "type": "esriFieldTypeString", "alias": "RevComments", "length": 255, "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "Shape.STLength()", "type": "esriFieldTypeDouble", "alias": "Shape.STLength()", "domain": null } ], "geometryField": {}, "indexes": [ { "name": "UUID_1097", "fields": "GlobalID", "isAscending": true, "isUnique": true, "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, "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": "Pacific Standard Time", "respectsDaylightSaving": true }, "preferredTimeReference": { "timeZone": "Pacific Standard Time", "respectsDaylightSaving": true }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true }, { "currentVersion": 11.2, "cimVersion": "3.2.0", "id": 1, "name": "Caltrans ROW Parcels", "type": "Feature Layer", "description": "", "geometryType": "esriGeometryPolygon", "sourceSpatialReference": { "wkid": 103005, "latestWkid": 6420, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -115860600, "falseY": -93269500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": 0, "mUnits": 1 }, "copyrightText": "", "parentLayer": null, "subLayers": [], "minScale": 0, "maxScale": 0, "referenceScale": 0.0, "drawingInfo": { "renderer": { "type": "uniqueValue", "field1": "Notes", "uniqueValueGroups": [ { "heading": "Notes", "classes": [ { "label": "Full Take", "description": "Full Take", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 0, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 0, 0, 255 ], "width": 0.4 } }, "values": [ [ "Full Take" ] ] }, { "label": "Partial Take", "description": "Partial Take", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 85, 255, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 144, 238, 144, 255 ], "width": 0.4 } }, "values": [ [ "Partial Take" ] ] }, { "label": "Joint Use Agreement", "description": "Joint Use Agreement", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 255, 255 ], "width": 0.4 } }, "values": [ [ "Joint Use Agreement" ], [ "Joint Use Agreement PCL 1" ], [ "Joint Use Agreement PCL 2" ] ] }, { "label": "Consent to Common Use", "description": "Consent to Common Use", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 229, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 190, 232, 255, 255 ], "width": 0.4 } }, "values": [ [ "Consent to Common Use Agreement" ], [ "Consent to Common Use Agreement PCL 2" ] ] }, { "label": "Relinquishment", "description": "Relinquishment", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 85, 26, 139, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 85, 26, 139, 255 ], "width": 0.4 } }, "values": [ [ "Relinquishment No. 56110 Segment 2" ] ] }, { "label": "PG&E", "description": "PG&E", "symbol": { "type": "esriSFS", "style": "esriSFSBackwardDiagonal", "color": [ 110, 110, 110, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.4 } }, "values": [ [ "PG&E" ] ] }, { "label": "DD-033925-01-01", "description": "DD-033925-01-01", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 170, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 170, 0, 255 ], "width": 0.4 } }, "values": [ [ "DD-033925-01-01" ] ] }, { "label": "Easement", "description": "Easement", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "values": [ [ "30' IEEE" ], [ "Parcel 8 IE Easement" ], [ "Parcel 5 WM Easement" ], [ "Parcel 6 IE Easement" ], [ "Parcel 7 WM Easement" ] ] }, { "label": "Verify", "description": "Verify", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "values": [ [ "Missing State APN" ], [ "VERIFY CALTRANS BOUNDARY" ], [ "VERIFY GEOMETRY" ], [ "VERIFY OWNER" ], [ "VERIFY ROW Owner" ] ] }, { "label": "Determined", "description": "Determined", "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 255, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "values": [ [ "" ] ] } ] } ], "uniqueValueInfos": [ { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 0, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 0, 0, 255 ], "width": 0.4 } }, "value": "Full Take", "label": "Full Take" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 85, 255, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 144, 238, 144, 255 ], "width": 0.4 } }, "value": "Partial Take", "label": "Partial Take" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 255, 255 ], "width": 0.4 } }, "value": "Joint Use Agreement", "label": "Joint Use Agreement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 255, 255 ], "width": 0.4 } }, "value": "Joint Use Agreement PCL 1", "label": "Joint Use Agreement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 0, 0, 255, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 255, 255 ], "width": 0.4 } }, "value": "Joint Use Agreement PCL 2", "label": "Joint Use Agreement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 229, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 190, 232, 255, 255 ], "width": 0.4 } }, "value": "Consent to Common Use Agreement", "label": "Consent to Common Use" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 182, 229, 252, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 190, 232, 255, 255 ], "width": 0.4 } }, "value": "Consent to Common Use Agreement PCL 2", "label": "Consent to Common Use" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 85, 26, 139, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 85, 26, 139, 255 ], "width": 0.4 } }, "value": "Relinquishment No. 56110 Segment 2", "label": "Relinquishment" }, { "symbol": { "type": "esriSFS", "style": "esriSFSBackwardDiagonal", "color": [ 110, 110, 110, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 110, 110, 110, 255 ], "width": 0.4 } }, "value": "PG&E", "label": "PG&E" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 170, 0, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 255, 170, 0, 255 ], "width": 0.4 } }, "value": "DD-033925-01-01", "label": "DD-033925-01-01" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "value": "30' IEEE", "label": "Easement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "value": "Parcel 8 IE Easement", "label": "Easement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "value": "Parcel 5 WM Easement", "label": "Easement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "value": "Parcel 6 IE Easement", "label": "Easement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 240, 237, 23, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 211, 211, 211, 255 ], "width": 0.4 } }, "value": "Parcel 7 WM Easement", "label": "Easement" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "value": "Missing State APN", "label": "Verify" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "value": "VERIFY CALTRANS BOUNDARY", "label": "Verify" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "value": "VERIFY GEOMETRY", "label": "Verify" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "value": "VERIFY OWNER", "label": "Verify" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 172, 176, 211, 255 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 172, 176, 211, 255 ], "width": 0.4 } }, "value": "VERIFY ROW Owner", "label": "Verify" }, { "symbol": { "type": "esriSFS", "style": "esriSFSSolid", "color": [ 255, 255, 255, 0 ], "outline": { "type": "esriSLS", "style": "esriSLSSolid", "color": [ 0, 0, 0, 255 ], "width": 1 } }, "value": "", "label": "Determined" } ], "fieldDelimiter": ",", "authoringInfo": { "colorRamp": { "type": "multipart", "colorRamps": [ { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 202, 216, 252, 255 ], "toColor": [ 202, 216, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 222, 252, 179, 255 ], "toColor": [ 222, 252, 179, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 184, 184, 255 ], "toColor": [ 252, 184, 184, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 250, 182, 252, 255 ], "toColor": [ 250, 182, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 207, 252, 237, 255 ], "toColor": [ 207, 252, 237, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 228, 187, 255 ], "toColor": [ 252, 228, 187, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 184, 179, 252, 255 ], "toColor": [ 184, 179, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 212, 238, 255 ], "toColor": [ 252, 212, 238, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 252, 221, 212, 255 ], "toColor": [ 252, 221, 212, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 252, 191, 255 ], "toColor": [ 179, 252, 191, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 179, 238, 252, 255 ], "toColor": [ 179, 238, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 223, 192, 252, 255 ], "toColor": [ 223, 192, 252, 255 ] }, { "type": "algorithmic", "algorithm": "esriCIELabAlgorithm", "fromColor": [ 240, 252, 204, 255 ], "toColor": [ 240, 252, 204, 255 ] } ] } } }, "scaleSymbols": true, "transparency": 0, "labelingInfo": [ { "labelExpressionInfo": { "expression": "$feature.StateAPN", "title": "Custom" }, "labelPlacement": "esriServerPolygonPlacementAlwaysHorizontal", "multiPart": "labelLargest", "allowOverrun": true, "deconflictionStrategy": "dynamic", "repeatLabel": false, "useClippedGeometry": true, "stackLabel": true, "stackAlignment": "dynamic", "removeDuplicates": "none", "stackRowLength": 24, "useCodedValues": true, "maxScale": 0, "minScale": 12500, "name": "Class 1", "priority": -1, "symbol": { "type": "esriTS", "color": [ 0, 0, 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": "Segoe UI", "size": 10, "style": "normal", "weight": "normal", "decoration": "none" } } } ] }, "defaultVisibility": true, "extent": { "xmin": 6171233.954544723, "ymin": 2054047.2701750547, "xmax": 6215046.189426631, "ymax": 2086290.1899410635, "spatialReference": { "wkid": 103005, "latestWkid": 6420, "xyTolerance": 0.003280833333333333, "zTolerance": 0.001, "mTolerance": 0.001, "falseX": -115860600, "falseY": -93269500, "xyUnits": 3048.0060960121928, "falseZ": -100000, "zUnits": 10000, "falseM": -100000, "mUnits": 10000 } }, "hasAttachments": false, "htmlPopupType": "esriServerHTMLPopupTypeAsHTMLText", "displayField": "SourceDocumentName", "typeIdField": null, "subtypeFieldName": null, "subtypeField": null, "defaultSubtypeCode": null, "fields": [ { "name": "OBJECTID", "type": "esriFieldTypeOID", "alias": "OBJECTID", "domain": null }, { "name": "GlobalID", "type": "esriFieldTypeGlobalID", "alias": "GlobalID", "length": 38, "domain": null }, { "name": "ROWID", "type": "esriFieldTypeInteger", "alias": "Parcel ID", "domain": null }, { "name": "StateAPN", "type": "esriFieldTypeString", "alias": "State APN", "length": 20, "domain": null }, { "name": "CountyAPN", "type": "esriFieldTypeString", "alias": "APN", "length": 13, "domain": null }, { "name": "FeatureType", "type": "esriFieldTypeString", "alias": "Feature Type", "length": 12, "domain": null }, { "name": "Community", "type": "esriFieldTypeString", "alias": "Community", "length": 30, "domain": null }, { "name": "OwnedBy", "type": "esriFieldTypeString", "alias": "Owner", "length": 25, "domain": { "type": "codedValue", "name": "dOwner_8", "description": "Generic list of asset owners, maintenance agencies", "codedValues": [ { "name": "Alameda County", "code": "Alameda County" }, { "name": "BART", "code": "BART" }, { "name": "California Water Service", "code": "California Water Service" }, { "name": "Caltrans", "code": "Caltrans" }, { "name": "Camp Parks", "code": "Camp Parks" }, { "name": "Alameda County Fairgrounds", "code": "County Fairgrounds" }, { "name": "DERWA", "code": "DERWA" }, { "name": "DSRSD", "code": "DSRSD" }, { "name": "Dublin", "code": "Dublin" }, { "name": "DWR", "code": "DWR" }, { "name": "EBMUD", "code": "EBMUD" }, { "name": "EBRPD", "code": "EBRPD" }, { "name": "HOA", "code": "HOA" }, { "name": "LARPD", "code": "LARPD" }, { "name": "LAVWMA", "code": "LAVWMA" }, { "name": "Livermore", "code": "Livermore" }, { "name": "Livermore/Zone7", "code": "Livermore/Zone7" }, { "name": "LLNL", "code": "LLNL" }, { "name": "Multiple Owners", "code": "Multiple Owners" }, { "name": "Other", "code": "Other" }, { "name": "PGE", "code": "PGE" }, { "name": "Pleasanton", "code": "Pleasanton" }, { "name": "Private", "code": "Private" }, { "name": "Resident", "code": "Resident" }, { "name": "Santa Clara Valley Water Agency", "code": "SCVWA" }, { "name": "SFPUC", "code": "SFPUC" }, { "name": "Unknown", "code": "Unknown" }, { "name": "Zone 7", "code": "Zone 7" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" } }, { "name": "MaintainedBy", "type": "esriFieldTypeString", "alias": "MaintainedBy", "length": 25, "domain": { "type": "codedValue", "name": "dOwner_8", "description": "Generic list of asset owners, maintenance agencies", "codedValues": [ { "name": "Alameda County", "code": "Alameda County" }, { "name": "BART", "code": "BART" }, { "name": "California Water Service", "code": "California Water Service" }, { "name": "Caltrans", "code": "Caltrans" }, { "name": "Camp Parks", "code": "Camp Parks" }, { "name": "Alameda County Fairgrounds", "code": "County Fairgrounds" }, { "name": "DERWA", "code": "DERWA" }, { "name": "DSRSD", "code": "DSRSD" }, { "name": "Dublin", "code": "Dublin" }, { "name": "DWR", "code": "DWR" }, { "name": "EBMUD", "code": "EBMUD" }, { "name": "EBRPD", "code": "EBRPD" }, { "name": "HOA", "code": "HOA" }, { "name": "LARPD", "code": "LARPD" }, { "name": "LAVWMA", "code": "LAVWMA" }, { "name": "Livermore", "code": "Livermore" }, { "name": "Livermore/Zone7", "code": "Livermore/Zone7" }, { "name": "LLNL", "code": "LLNL" }, { "name": "Multiple Owners", "code": "Multiple Owners" }, { "name": "Other", "code": "Other" }, { "name": "PGE", "code": "PGE" }, { "name": "Pleasanton", "code": "Pleasanton" }, { "name": "Private", "code": "Private" }, { "name": "Resident", "code": "Resident" }, { "name": "Santa Clara Valley Water Agency", "code": "SCVWA" }, { "name": "SFPUC", "code": "SFPUC" }, { "name": "Unknown", "code": "Unknown" }, { "name": "Zone 7", "code": "Zone 7" } ], "mergePolicy": "esriMPTDefaultValue", "splitPolicy": "esriSPTDuplicate" } }, { "name": "SourceDocumentType", "type": "esriFieldTypeString", "alias": "Source Document Type", "length": 20, "domain": null }, { "name": "SourceDocumentName", "type": "esriFieldTypeString", "alias": "Source Document Name", "length": 100, "domain": null }, { "name": "DocumentURL", "type": "esriFieldTypeString", "alias": "Document URL", "length": 255, "domain": null }, { "name": "Notes", "type": "esriFieldTypeString", "alias": "Notes", "length": 255, "domain": null }, { "name": "CreateDate", "type": "esriFieldTypeDate", "alias": "CreateDate", "length": 8, "domain": null }, { "name": "RevDate", "type": "esriFieldTypeDate", "alias": "RevDate", "length": 8, "domain": null }, { "name": "RevBy", "type": "esriFieldTypeString", "alias": "RevBy", "length": 20, "domain": null }, { "name": "RevComments", "type": "esriFieldTypeString", "alias": "RevComments", "length": 255, "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": "R1098_pk", "fields": "OBJECTID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "UUID_1098", "fields": "GlobalID", "isAscending": true, "isUnique": true, "description": "" }, { "name": "S991_idx", "fields": "Shape", "isAscending": true, "isUnique": true, "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, "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": "Pacific Standard Time", "respectsDaylightSaving": true }, "preferredTimeReference": { "timeZone": "Pacific Standard Time", "respectsDaylightSaving": true }, "datesInUnknownTimezone": false, "hasGeometryProperties": true, "geometryProperties": { "shapeAreaFieldName": "Shape.STArea()", "shapeLengthFieldName": "Shape.STLength()", "units": "esriFeet", "mapUnits": {"uwkid": 9003} }, "hasMetadata": true, "isDataArchived": false, "archivingInfo": { "supportsQueryWithHistoricMoment": false, "startArchivingMoment": -1 }, "supportsCoordinatesQuantization": true, "supportsDynamicLegends": true } ], "tables": [] }