UNPKG

@arcgis/coding-components

Version:

Contains components for editing code in different languages. The currently supported languages are html, css, json, TypeScript, JavaScript, and Arcade.

1 lines • 747 kB
[{"id":"constants","title":"定数","items":[{"type":"constant","name":"infinity","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#infinity","description":"他の数倀より倧きな倀を衚したす。 `-Infinity` は、任意の数倀より小さい倀ずしおも䜿甚できたす。","examples":"\n**䟋**\n\n4 ぀のフィヌルド倀の最倧倀を蚈算したす\n\n```arcade\nvar values = [ $feature.field1, $feature.field2, $feature.field3, $feature.field4 ];\nvar maxValue = -Infinity;\n\nfor(var i in values){\n maxValue = IIF(values[i] > maxValue, values[i], maxValue);\n}\n\nreturn maxValue;\n```\n\n","completion":{"label":"Infinity","detail":"Infinity","insertText":"Infinity","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n他の数倀より倧きな倀を衚したす。 `-Infinity` は、任意の数倀より小さい倀ずしおも䜿甚できたす。"}}},{"type":"constant","name":"pi","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#pi","description":"円呚を盎埄で陀算した倀で、玄 `3.14159` です。","examples":"\n**䟋**\n\n円フィヌチャの面積を返したす\n\n```arcade\nvar r = $feature.radius;\nPI * r * r;\n```\n\n","completion":{"label":"PI","detail":"PI","insertText":"PI","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n円呚を盎埄で陀算した倀で、玄 `3.14159` です。"}}},{"type":"constant","name":"textformatting.backwardslash","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#textformatting.backwardslash","description":"バックスラッシュ文字 `\\` をテキストに挿入したす。","examples":"\n**䟋**\n\n'\\\\\\serverName\\foo\\bar' を返したす\n\n```arcade\nTextFormatting.BackwardSlash + TextFormatting.BackwardSlash + $feature.FILE_PATH\n```\n\n","completion":{"label":"TextFormatting.BackwardSlash","detail":"TextFormatting.BackwardSlash","insertText":"TextFormatting.BackwardSlash","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nバックスラッシュ文字 `\\` をテキストに挿入したす。"}}},{"type":"constant","name":"textformatting.doublequote","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#textformatting.doublequote","description":"二重匕甚笊 `\"` をテキストに挿入したす。","examples":"\n**䟋**\n\n'Nicholas \"Nick\" Anderson' を返したす\n\n```arcade\n$feature.NAME + \" \" + TextFormatting.DoubleQuote + $feature.ALIAS + TextFormatting.DoubleQuote + \" \" + $feature.SURNAME\n```\n\n","completion":{"label":"TextFormatting.DoubleQuote","detail":"TextFormatting.DoubleQuote","insertText":"TextFormatting.DoubleQuote","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n二重匕甚笊 `\"` をテキストに挿入したす。"}}},{"type":"constant","name":"textformatting.forwardslash","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#textformatting.forwardslash","description":"フォワヌドスラッシュ文字 `/` をテキストに挿入したす。","examples":"\n**䟋**\n\n'151/low' を返したす\n\n```arcade\n$feature.POP_DENSITY + TextFormatting.ForwardSlash + $feature.CLASS\n```\n\n","completion":{"label":"TextFormatting.ForwardSlash","detail":"TextFormatting.ForwardSlash","insertText":"TextFormatting.ForwardSlash","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nフォワヌドスラッシュ文字 `/` をテキストに挿入したす。"}}},{"type":"constant","name":"textformatting.newline","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#textformatting.newline","description":"新しい行たたは改行をテキストに挿入したす。 ArcGIS API 3.x for JavaScript や ArcGIS Online Map Viewer Classic では、耇数行のラベルはサポヌトされおいたせん。","examples":"\n**䟋**\n\n\"T2N R1W\" を返したす\n\n```arcade\n\"T\" + $feature.TOWNSHIP + TextFormatting.NewLine + \"R\" + $feature.RANGE\n```\n\n","completion":{"label":"TextFormatting.NewLine","detail":"TextFormatting.NewLine","insertText":"TextFormatting.NewLine","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n新しい行たたは改行をテキストに挿入したす。 ArcGIS API 3.x for JavaScript や ArcGIS Online Map Viewer Classic では、耇数行のラベルはサポヌトされおいたせん。"}}},{"type":"constant","name":"textformatting.singlequote","bundle":"core","sinceVersion":"1.0","link":"https://developers.arcgis.com/arcade/function-reference/constants/#textformatting.singlequote","description":"単䞀匕甚笊 `'` をテキストに挿入したす。","examples":"\n**䟋**\n\n\"Nicholas 'Nick' Anderson\" を返したす\n\n```arcade\n$feature.NAME + \" \" + TextFormatting.SingleQuote + $feature.ALIAS + TextFormatting.SingleQuote + \" \" + $feature.SURNAME\n```\n\n","completion":{"label":"TextFormatting.SingleQuote","detail":"TextFormatting.SingleQuote","insertText":"TextFormatting.SingleQuote","insertTextMode":2,"insertTextFormat":1,"kind":21,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.0](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n単䞀匕甚笊 `'` をテキストに挿入したす。"}}}]},{"id":"featureset_functions","title":"FeatureSet 関数","items":[{"type":"function","name":"area","bundle":"data-access","sinceVersion":"1.7","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#area","description":"入力 FeatureSet の面積を所定の単䜍で返したす。 これは、盎亀挔算を䜿甚した平面蚈枬です。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_","examples":"\n**䟋**\n\nレむダヌの面積を平方キロメヌトルで返したす\n\n```arcade\nArea($layer, 'square-kilometers')\n```\n\n","completion":{"label":"Area","detail":"Area(features, unit?) -> Number","insertText":"Area(${1:features_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.7](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力 FeatureSet の面積を所定の単䜍で返したす。 これは、盎亀挔算を䜿甚した平面蚈枬です。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 平面面積を蚈算する FeatureSet。\n- **unit** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Number](https://developers.arcgis.com/arcade/guide/types/#number) - 返り倀の蚈枬単䜍。 以䞋の倀のいずれか、たたは以䞋の远加リ゜ヌス セクションに蚘茉されおいる数倀コヌドのいずれかになりたす。 芖芚化、ラベリング、およびポップアップのプロファむルでは、デフォルトの単䜍がマップの空間参照になりたす。 フィヌルド挔算など、その他のプロファむルでは、デヌタの空間参照に基づいおデフォルト倀が蚭定されたす。 \n蚭定可胜な倀: `acres` | `hectares` | `square-centimeters` | `square-decimeters` | `square-feet` | `square-inches` | `square-kilometers` | `square-meters` | `square-miles` | `square-millimeters` | `square-us-feet` | `square-us-miles` | `square-yards` \n\n\n**戻り倀**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)\n\n**参考資料**\n\n* [AreaGeodetic()](https://developers.arcgis.com/arcade/function-reference/featureset_functions/#areageodetic)\n* [Available numeric codes for unit parameter](https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic7922.html#i-heading-remarks)\n"}},"parametersInfo":{"min":1,"max":2}},{"type":"function","name":"areageodetic","bundle":"data-access","sinceVersion":"1.7","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#areageodetic","description":"入力 FeatureSet の枬地面積を所定の単䜍で返したす。 これは `Area()` よりも信頌性の高い面積の蚈枬です よりも信頌性の高い長さの蚈枬です。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_","examples":"\n**䟋**\n\nレむダヌの枬地面積を平方キロメヌトルで返したす\n\n```arcade\nAreaGeodetic($layer, 'square-kilometers')\n```\n\n","completion":{"label":"AreaGeodetic","detail":"AreaGeodetic(features, unit?, curveType?) -> Number","insertText":"AreaGeodetic(${1:features_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.7](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力 FeatureSet の枬地面積を所定の単䜍で返したす。 これは `Area()` よりも信頌性の高い面積の蚈枬です よりも信頌性の高い長さの蚈枬です。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 枬地面積を蚈算する FeatureSet。\n- **unit** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Number](https://developers.arcgis.com/arcade/guide/types/#number) - 返り倀の蚈枬単䜍。 以䞋の倀のいずれか、たたは以䞋の远加リ゜ヌス セクションに蚘茉されおいる数倀コヌドのいずれかになりたす。 芖芚化、ラベリング、およびポップアップのプロファむルでは、デフォルトの単䜍がマップの空間参照になりたす。 フィヌルド挔算など、その他のプロファむルでは、デヌタの空間参照に基づいおデフォルト倀が蚭定されたす。 \n蚭定可胜な倀: `acres` | `hectares` | `square-centimeters` | `square-decimeters` | `square-feet` | `square-inches` | `square-kilometers` | `square-meters` | `square-miles` | `square-millimeters` | `square-us-feet` | `square-us-miles` | `square-yards` \n\n- **curveType** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 須__Since 1.31_ The type of curve to use for the geodetic area calculation_____________________________________鷗. 須_If no value is provided, the default is `Geodesic`____________________________鷗. \n須_Possible values___________________鷗: \n 須_- `Geodesic` - Defined by the shortest distance between two points on an ellipsoid_____________________________________________鷗. \n 須_- `GreatElliptic` - Defined by the intersection of a plane that contains the center of the spheroid and the spheroid surface and passes through two points. This is also known as a great circle when a sphere is used. It is not necessarily the shortest path between two points_____________________________________________________________________________________________________________________________________________鷗. \n 須_- `Loxodrome` - Defined by the line of constant bearing, or azimuth, between two points. It represents a rhumb-line path on the earth that crosses each meridian at the same acute angle, thus forming a spiral that converges on the north or south pole. The Mercator projection shows loxodromes as straight lines______________________________________________________________________________________________________________________________________________________________鷗. \n 須_- `NormalSection` - Defined by the intersection of a plane that passes through two points on the surface of the spheroid and is perpendicular to the surface at the first point. It is not necessarily the shortest path between two points_________________________________________________________________________________________________________________________鷗. \n 須_- `ShapePreserving` - The segment shape is preserved in the projection where it is defined. This is often used in situations where maintaining the visual representation of a feature is crucial, like when working with boundaries or coastlines___________________________________________________________________________________________________________________________鷗.\n\n**戻り倀**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)\n\n**参考資料**\n\n* [Area()](https://developers.arcgis.com/arcade/function-reference/featureset_functions/#area)\n* [Available numeric codes for unit parameter](https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic7922.html#i-heading-remarks)\n"}},"parametersInfo":{"min":1,"max":3}},{"type":"function","name":"attachments","bundle":"data-access","sinceVersion":"1.6","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#attachments","description":"入力フィヌチャに関連付けられたアタッチメントのリストを返したす。 各結果には、アタッチメントの名前、コンテンツのタむプ、ID、およびサむズ (バむト単䜍) が含たれたす。 フィヌチャ サヌビスから䜜成されたフィヌチャにのみ適甚されたす。","examples":"\n**䟋**\n\nフィヌチャに関連付けられおいる添付ファむルの数を返したす。\n\n```arcade\n// Returns the number of attachments associated with the feature\nCount(Attachments($feature))\n```\n\n","completion":{"label":"Attachments","detail":"Attachments(inputFeature, options?) -> Array<Attachment>","insertText":"Attachments(${1:inputFeature_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.6](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力フィヌチャに関連付けられたアタッチメントのリストを返したす。 各結果には、アタッチメントの名前、コンテンツのタむプ、ID、およびサむズ (バむト単䜍) が含たれたす。 フィヌチャ サヌビスから䜜成されたフィヌチャにのみ適甚されたす。\n\n**パラメヌタヌ**\n\n- **inputFeature**: [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - このフィヌチャに関連付けられおいる添付ファむルが、サヌビスから取埗されたす。\n- **options** (_Optional_): [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) - リク゚ストの蚭定。 ディクショナリのプロパティ:\n\n - **types**: [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; - 取埗するファむル タむプを衚すテキスト倀の配列。 \n須_Possible Values: `bmp`, `ecw`, `emf`, `eps`, `ps`, `gif`, `img`, `jp2`, `jpc`, `j2k`, `jpf`, `jpg`, `jpeg`, `jpe`, `png`, `psd`, `raw`, `sid`, `tif`____________________________________________________________________________鷗, 須_`tiff`, `wmf`, `wps`, `avi`, `mpg`, `mpe`, `mpeg`, `mov`, `wmv`, `aif`, `mid`, `rmi`, `mp2`, `mp3`, `mp4`, `pma`, `mpv2`, `qt`, `ra`____________________________________________________________________鷗, 須_`ram`, `wav`, `wma`, `doc`, `docx`, `dot`, `xls`, `xlsx`, `xlt`, `pdf`, `ppt`, `pptx`, `txt`, `zip`, `7z`, `gz`, `gtar`, `tar`, `tgz`____________________________________________________________________鷗, 須_`vrml`, `gml`, `json`, `xml`, `mdb`, `geodatabase`__________________________鷗\n - **minsize**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - 添付ファむルのバむト単䜍の最小ファむル サむズ。\n - **maxsize**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - 添付ファむルのバむト単䜍の最倧ファむル サむズ。\n - **metadata** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - 戻り関数に添付ファむルのメタデヌタを含めるかどうかを瀺したす。 珟圚、画像の Exif メタデヌタのみがサポヌトされおいたす。\n\n**戻り倀**: [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Attachment](https://developers.arcgis.com/arcade/guide/types/#attachment)&gt;"}},"parametersInfo":{"min":1,"max":2}},{"type":"function","name":"average","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#average","description":"FeatureSet の所定の数倀フィヌルドの平均倀を返したす。","examples":"\n**䟋**\n\n該圓するフィヌチャの人口ずレむダヌ内のすべおのフィヌチャの平均人口の差を算出したす。\n\n```arcade\n$feature.population - Average($layer, 'population')\n```\n\nレむダヌ内のすべおのフィヌチャの平方マむルあたりの平均人口を算出したす。\n\n```arcade\nAverage($layer, 'population / area')\n```\n\n","completion":{"label":"Average","detail":"Average(features, fieldNameOrSQLExpression) -> Number","insertText":"Average(${1:features_}, ${2:fieldNameOrSQLExpression_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nFeatureSet の所定の数倀フィヌルドの平均倀を返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 挔算の実行察象ずなる FeatureSet。\n- **fieldNameOrSQLExpression**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 統蚈情報が入力 FeatureSet から算出される数倀フィヌルドたたは SQL92 匏の名前を指定したす。\n\n**戻り倀**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"contains","bundle":"data-access","sinceVersion":"1.7","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#contains","description":"入力ゞオメトリに含たれるフィヌチャを FeatureSet から返したす。\n\n須_**Be aware that using `$feature` as input to this function will yield results only as precise as the view's scale resolution________________________________________________________________鷗. 須_Therefore values returned from expressions using this function may change after zooming between scales.**______________________________________________________鷗","examples":"\n**䟋**\n\n特定のポリゎンに含たれおいるフィヌチャの数を返したす\n\n```arcade\nvar parcels = FeatureSetByName($map, 'parcels')\nvar projectArea = $feature;\nCount(Contains(projectArea, parcels));\n```\n\n","completion":{"label":"Contains","detail":"Contains(containerGeometry, insideFeatures) -> FeatureSet","insertText":"Contains(${1:containerGeometry_}, ${2:insideFeatures_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.7](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力ゞオメトリに含たれるフィヌチャを FeatureSet から返したす。\n\n須_**Be aware that using `$feature` as input to this function will yield results only as precise as the view's scale resolution________________________________________________________________鷗. 須_Therefore values returned from expressions using this function may change after zooming between scales.**______________________________________________________鷗\n\n**パラメヌタヌ**\n\n- **containerGeometry**: [Geometry](https://developers.arcgis.com/arcade/guide/types/#geometry) \\| [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - `insideFeatures` ずの 'contains' リレヌションシップをテストするゞオメトリです。 このゞオメトリは、`insideFeatures` の朜圚的な 'container' ずしお考えたす。\n- **insideFeatures**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - `containerGeometry` ずの 'within' リレヌションシップをテストする FeatureSet です。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)\n\n**参考資料**\n\n* [Contains](https://esri.github.io/geometry-api-java/doc/Contains.html)\n"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"count","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#count","description":"FeatureSet 内のフィヌチャの数を返したす。","examples":"\n**䟋**\n\nレむダヌ内のフィヌチャの数を返したす。\n\n```arcade\nCount($layer)\n```\n\n","completion":{"label":"Count","detail":"Count(features) -> Number","insertText":"Count(${1:features_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nFeatureSet 内のフィヌチャの数を返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - フィヌチャの数のカりント元ずなる FeatureSet。\n\n**戻り倀**: [Number](https://developers.arcgis.com/arcade/guide/types/#number)"}},"parametersInfo":{"min":1,"max":1}},{"type":"function","name":"crosses","bundle":"data-access","sinceVersion":"1.3","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#crosses","description":"入力ゞオメトリをクロスするフィヌチャを FeatureSet から返したす。\n\n須__Feature geometries in the visualization and labeling profiles________________________________鷗 須_are generalized according to the view's scale resolution to improve drawing performance_____________________________________________鷗. 須_Therefore, using a feature's geometry (i.e. `$feature`) as input to any geometry function in these contexts_______________________________________________________鷗 須_will return different results at each scale level. Other profiles, such as popup, provide the full resolution geometry.______________________________________________________________鷗","examples":"\n**䟋**\n\n特定のポリゎンずクロスしおいる FeatureSet 内のフィヌチャの数を返したす。\n\n```arcade\nvar geom2 = Polygon({ ... });\nCount( Crosses($layer, geom2) );\n```\n\n","completion":{"label":"Crosses","detail":"Crosses(features, crossingGeometry) -> FeatureSet","insertText":"Crosses(${1:features_}, ${2:crossingGeometry_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.3](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力ゞオメトリをクロスするフィヌチャを FeatureSet から返したす。\n\n須__Feature geometries in the visualization and labeling profiles________________________________鷗 須_are generalized according to the view's scale resolution to improve drawing performance_____________________________________________鷗. 須_Therefore, using a feature's geometry (i.e. `$feature`) as input to any geometry function in these contexts_______________________________________________________鷗 須_will return different results at each scale level. Other profiles, such as popup, provide the full resolution geometry.______________________________________________________________鷗\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 入力 `crossingGeometry` ずのクロス リレヌションシップをテストするフィヌチャ。\n- **crossingGeometry**: [Geometry](https://developers.arcgis.com/arcade/guide/types/#geometry) \\| [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - クロスされるゞオメトリ。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)\n\n**参考資料**\n\n* [Crosses](https://esri.github.io/geometry-api-java/doc/Crosses.html)\n"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"distinct","bundle":"data-access","sinceVersion":"1.8","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#distinct","description":"FeatureSet から䞀連の個別倀たたは䞀意の倀を返したす。","examples":"\n**䟋**\n\n'Status' 列を持぀ FeatureSet を返したす。 FeatureSet の各行には、䞀意のステヌタス倀が含たれおいたす\n\n```arcade\nDistinct($layer, 'Status')\n```\n\n'Status' 列ず 'Type' 列を持぀ FeatureSet を返したす。 FeatureSet の各行には、'Status' および 'Type' の倀の䞀意の組み合わせが含たれおいたす\n\n```arcade\nDistinct($layer, ['Status', 'Type'])\n```\n\nDensity 列の行に Low、High、N/A の倀が含たれる FeatureSet を返したす\n\n```arcade\nDistinct($layer, {\n name: \"Density\",\n expression: \"CASE WHEN PopDensity < 100 THEN 'Low' WHEN PopDensity >= 100 THEN 'High' ELSE 'N/A' END\"\n})\n```\n\nScore 列ず Type 列を持぀ FeatureSet を返したす\n\n```arcade\nDistinct($layer, [{\n name: 'Score',\n expression: 'POPULATION_DENSITY * 0.65 + Status_Code * 0.35'\n}, {\n name: 'Type',\n expression: 'Category'\n}])\n```\n\n","completion":{"label":"Distinct","detail":"Distinct(features, fields) -> FeatureSet","insertText":"Distinct(${1:features_}, ${2:fields_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.8](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nFeatureSet から䞀連の個別倀たたは䞀意の倀を返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 個別倀を返す FeatureSet です。\n- **fields**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) \\| [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; \\| [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary)&gt; - 個別倀を刀別するフィヌルド/条件匏です。 このパラメヌタヌには、フィヌルド名の配列、条件匏の配列、 ディクショナリたたはオブゞェクトの配列を䜿甚でき、個別倀を栌玍する出力列名を指定したす。 ディクショナリを指定した堎合、次の仕様を䜿甚する必芁がありたす。\n\n - **name**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 所定の条件匏の結果を栌玍する列の名前。\n - **expression**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 個別倀を蚈算する SQL-92 条件匏。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"domain","bundle":"data-access","sinceVersion":"1.11","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#domain","description":"指定された `featureSet` の所定のフィヌルドに割り圓おられたドメむンを返したす。 `featureSet` がサブタむプを持぀クラスに属しおいる堎合、サブタむプに割り圓おられたドメむンを返したす。","examples":"\n**䟋**\n\nフィヌチャのサブタむプに割り圓おられたドメむン。\n\n```arcade\nvar fsPole = FeatureSetByName($layer, \"Pole\", 1);\nvar d = Domain(fsPole, \"poleType\")\n// the poleType field has a coded value domain called poleTypes\n// the value of d will be\n// {\n// type: \"codedValue\" ,\n// name: \"poleTypesThreePhase\",\n// dataType: \"number\",\n// codedValues: [\n// { name: \"Unknown\", code: 0 },\n// { name: \"Wood\", code: 1 },\n// { name: \"Steel\", code: 2 }\n// { name: \"Reinforced Steel\", code: 3 }\n// ]\n// }\n```\n\n","completion":{"label":"Domain","detail":"Domain(features, fieldName, subtype?) -> Dictionary","insertText":"Domain(${1:features_}, ${2:fieldName_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.11](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n指定された `featureSet` の所定のフィヌルドに割り圓おられたドメむンを返したす。 `featureSet` がサブタむプを持぀クラスに属しおいる堎合、サブタむプに割り圓おられたドメむンを返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - ドメむンを保持するフィヌルドを含むフィヌチャの FeatureSet です。\n- **fieldName**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむンを含むフィヌルドの名前です (フィヌルドの゚むリアスではありたせん)。\n- **subtype** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) \\| [Number](https://developers.arcgis.com/arcade/guide/types/#number) - フィヌチャがサブタむプをサポヌトしおいる堎合のサブタむプのコヌド倀。\n\n**戻り倀**: [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) \n以䞋のプロパティで蚘述されおいるディクショナリを返したす。\n\n- **type**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむンのタむプ (`codedValue` たたは `range` のいずれか)。\n- **name**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむン名。\n- **dataType**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむン フィヌルドのデヌタ タむプ。 倀は `esriFieldTypeSmallInteger`、`esriFieldTypeInteger`、`esriFieldTypeBigInteger`、`esriFieldTypeSingle`、`esriFieldTypeDouble`、 `esriFieldTypeString`、`esriFieldTypeDate`、`esriFieldTypeOID`、`esriFieldTypeGeometry`、`esriFieldTypeBlob`、 `esriFieldTypeRaster`、`esriFieldTypeGUID`、`esriFieldTypeGlobalID`、`esriFieldTypeXML` のいずれかです。\n- **min**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - `range` ドメむンにのみ適甚されたす。 ドメむンの最小倀。\n- **max**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - `range` ドメむンにのみ適甚されたす。 ドメむンの最倧倀。\n- **codedValues**: [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary)&gt; - `codedValue` ドメむンにのみ適甚されたす。 フィヌルドの有効な倀を蚘述する蟞曞の配列。 それぞれの蟞曞には、実際のフィヌルド倀を保持する `code` プロパティず、 倀のわかりやすい説明を保持する `name` プロパティがありたす (䟋: `{ code: 1, name: \"pavement\" }`)。"}},"parametersInfo":{"min":2,"max":3}},{"type":"function","name":"domaincode","bundle":"data-access","sinceVersion":"1.7","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#domaincode","description":"FeatureSet 内の関連付けられたドメむンの説明のコヌドを返したす。","examples":"\n**䟋**\n\n参照されおいるフィヌルドのドメむンの説明を出力したす。\n\n```arcade\nDomainCode($layer, 'Enabled', 'True', subtype)\n```\n\n","completion":{"label":"DomainCode","detail":"DomainCode(features, fieldName, value, subtype?) -> Number,Text","insertText":"DomainCode(${1:features_}, ${2:fieldName_}, ${3:value_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.7](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nFeatureSet 内の関連付けられたドメむンの説明のコヌドを返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - ドメむンを保持するフィヌルドを含むフィヌチャ セットです。\n- **fieldName**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむンを含むフィヌルドの名前です (フィヌルドの゚むリアスではありたせん)。\n- **value**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - コヌドに再倉換する倀です。 返されるコヌドは、サヌビス メタデヌタから取埗されたす。\n- **subtype** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Text](https://developers.arcgis.com/arcade/guide/types/#text) - フィヌチャ セットがサブタむプをサポヌトしおいる堎合のサブタむプのコヌド番号たたは名前です。\n\n**戻り倀**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Text](https://developers.arcgis.com/arcade/guide/types/#text)"}},"parametersInfo":{"min":3,"max":4}},{"type":"function","name":"domainname","bundle":"data-access","sinceVersion":"1.7","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#domainname","description":"FeatureSet 内のドメむン コヌドの説明的な名前を返したす。","examples":"\n**䟋**\n\n参照されおいるフィヌルドのドメむンの説明を出力したす\n\n```arcade\nDomainName($layer, 'fieldName')\n```\n\n","completion":{"label":"DomainName","detail":"DomainName(features, fieldName, code?, subtype?) -> Text","insertText":"DomainName(${1:features_}, ${2:fieldName_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.7](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nFeatureSet 内のドメむン コヌドの説明的な名前を返したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - ドメむンを保持するフィヌルドを含む FeatureSet です。\n- **fieldName**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - ドメむンを含むフィヌルドの名前です (フィヌルドの゚むリアスではありたせん)。\n- **code** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 目的を説明する名前に関連付けられおいるコヌドです。 返されるコヌドは、サヌビス メタデヌタから取埗されたす。\n- **subtype** (_Optional_): [Number](https://developers.arcgis.com/arcade/guide/types/#number) \\| [Text](https://developers.arcgis.com/arcade/guide/types/#text) - FeatureSet がサブタむプをサポヌトしおいる堎合のサブタむプのコヌド番号たたは名前です。\n\n**戻り倀**: [Text](https://developers.arcgis.com/arcade/guide/types/#text)"}},"parametersInfo":{"min":2,"max":4}},{"type":"function","name":"envelopeintersects","bundle":"data-access","sinceVersion":"1.11","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#envelopeintersects","description":"䞀連のフィヌチャの゚ンベロヌプ (たたは範囲) が別のゞオメトリの゚ンベロヌプず亀差するフィヌチャを FeatureSet から返したす。 以䞋の図で、赀でハむラむトされた郚分は関数がフィヌチャを返す堎合の空間リレヌションシップを瀺しおいたす。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_","examples":"\n**䟋**\n\ngeom2 の゚ンベロヌプず亀差しおいるフィヌチャの数を返したす\n\n```arcade\nvar geom2 = Polygon({ ... });\nCount( EnvelopeIntersects($layer, geom2) );\n```\n\n","completion":{"label":"EnvelopeIntersects","detail":"EnvelopeIntersects(features, envelope) -> FeatureSet","insertText":"EnvelopeIntersects(${1:features_}, ${2:envelope_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.11](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n䞀連のフィヌチャの゚ンベロヌプ (たたは範囲) が別のゞオメトリの゚ンベロヌプず亀差するフィヌチャを FeatureSet から返したす。 以䞋の図で、赀でハむラむトされた郚分は関数がフィヌチャを返す堎合の空間リレヌションシップを瀺しおいたす。\n\n_芖芚化ずラベリングのプロファむルにある Feature ゞオメトリは、 描画パフォヌマンスを向䞊するために、衚瀺の瞮尺解像床に応じお単玔化されたす。 このため、これらのコンテキストで、フィヌチャのゞオメトリ (即ち `$feature`) をゞオメトリ関数の入力倀ずしお䜿甚するず、 瞮尺レベルごずに異なる結果が返されたす。 その他のプロファむル (ポップアップなど) では、最倧解像床のゞオメトリが提䟛されたす。_\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - 入力 `envelope` ずの亀差関係に぀いおテストされる FeatureSet。\n- **envelope**: [Geometry](https://developers.arcgis.com/arcade/guide/types/#geometry) \\| [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - 亀差される゚ンベロヌプ。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"expects","bundle":"data-access","sinceVersion":"1.15","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#expects","description":"指定の FeatureSet の远加の属性をリク゚ストしたす。","examples":"\n**䟋**\n\nクラスタヌ内のフィヌチャの POPULATION フィヌルドをリク゚スト\n\n```arcade\n// If the layer is clustered based on count,\n// only the OBJECTID field is requested by default.\n// To display the sum of the POPULATION field\n// for all features in the cluster, we must\n// explicitly request the POPULATION data. \nExpects($aggregatedFeatures, 'POPULATION')\nText(Sum($aggregatedFeatures, 'POPULATION'), '#,###')\n```\n\n","completion":{"label":"Expects","detail":"Expects(features, field1, [field2, ..., fieldN]?) -> Null","insertText":"Expects(${1:features_}, ${2:field1_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.15](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n指定の FeatureSet の远加の属性をリク゚ストしたす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - リク゚ストされたフィヌルドの远加先のフィヌチャ セット。\n- **field1**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 指定のフィヌチャに぀いおリク゚ストするフィヌルド名。 匏で䜿甚するために必芁なフィヌルドのみをリストしたす。 必芁に応じお、ワむルドカヌド文字 `*` を䜿甚しおすべおのフィヌルドをリク゚ストできたす。 ただし、䞍必芁なデヌタ量が読み蟌たれお、アプリのパフォヌマンスに悪圱響を及がすのを防ぐために、この文字の䜿甚は避ける必芁がありたす。 この倀は、テキスト リテラルである必芁があり、倉数を䜿甚するこずはできたせん。\n- **[field2, ..., fieldN]** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 指定のフィヌチャに぀いおリク゚ストするフィヌルド名の継続的なリスト。 匏で䜿甚するために必芁なフィヌルドのみをリストしたす。 これらの倀は、テキスト リテラルである必芁があり、倉数を䜿甚するこずはできたせん。\n\n**戻り倀**: Null"}},"parametersInfo":{"min":2,"max":-1}},[{"type":"function","name":"featureset","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featureset1","description":"ArcGIS REST 仕様に基づいお新しい FeatureSet を JSON から䜜成したす。 この䟋に぀いおは、䞋蚘のスニペットをご参照ください。","examples":"\n**䟋**\n\nFeatureSet を JSON から䜜成したす。\n\n```arcade\n// JSON representation of the feature used in the snippet below\n// {\n// 'fields': [{\n// 'alias': 'RANK',\n// 'name': 'RANK',\n// 'type': 'esriFieldTypeInteger'\n// }, {\n// 'alias': 'ELEV_m',\n// 'name': 'ELEV_m',\n// 'type': 'esriFieldTypeInteger'\n// }],\n// 'spatialReference': { 'wkid': 4326 },\n// 'geometryType': 'esriGeometryPoint',\n// 'features': [{\n// 'geometry': {\n// 'spatialReference': { 'wkid': 4326 },\n// 'x': -151.0063,\n// 'y': 63.069\n// },\n// 'attributes': {\n// 'RANK': 1,\n// 'ELEV_m': 6168\n// }\n// }]\n// };\n// The Dictionary representation of the FeatureSet must be a serialized text value\nvar features = FeatureSet('{\"fields\":[{\"alias\":\"RANK\",\"name\":\"RANK\",\"type\":\"esriFieldTypeInteger\"},{\"alias\":\"ELEV_m\",\"name\":\"ELEV_m\",\"type\":\"esriFieldTypeInteger\"}],\"spatialReference\":{\"wkid\":4326},\"geometryType\":\"esriGeometryPoint\",\"features\":[{\"geometry\":{\"spatialReference\":{\"wkid\":4326},\"x\":-151.0063,\"y\":63.069},\"attributes\":{\"RANK\":1,\"ELEV_m\":6168}}]}')\n```\n\n","completion":{"label":"FeatureSet","detail":"FeatureSet(definition) -> FeatureSet","insertText":"FeatureSet(${1:definition_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nArcGIS REST 仕様に基づいお新しい FeatureSet を JSON から䜜成したす。 この䟋に぀いおは、䞋蚘のスニペットをご参照ください。\n\n**パラメヌタヌ**\n\n- **definition**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 䞀連のフィヌチャを蚘述した JSON です。 JSON は、テキスト倀ずしお盎列化されおいる必芁がありたす。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":1,"max":1}},{"type":"function","name":"featureset","bundle":"data-access","sinceVersion":"1.19","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featureset2","description":"ArcGIS REST 仕様に基づいお JSON を衚す新しい FeatureSet をディクショナリから䜜成したす。 この䟋に぀いおは、䞋蚘のスニペットをご参照ください。","examples":"\n**䟋**\n\nFeatureSet をディクショナリから䜜成したす。\n\n```arcade\n// JSON representation of the feature used in the snippet below\nvar d = {\n fields: [{\n alias: 'RANK',\n name: 'RANK',\n type: 'esriFieldTypeInteger'\n }, {\n alias: 'ELEV_m',\n name: 'ELEV_m',\n type: 'esriFieldTypeInteger'\n }],\n spatialReference: { wkid: 4326 },\n geometryType: 'esriGeometryPoint',\n features: [{\n geometry: {\n spatialReference: { wkid: 4326 },\n x: -151.0063,\n y: 63.069\n },\n attributes: {\n RANK: 1,\n ELEV_m: 6168\n }\n }]\n };\nvar features = FeatureSet(d)\n```\n\n","completion":{"label":"FeatureSet","detail":"FeatureSet(definition) -> FeatureSet","insertText":"FeatureSet(${1:definition_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.19](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nArcGIS REST 仕様に基づいお JSON を衚す新しい FeatureSet をディクショナリから䜜成したす。 この䟋に぀いおは、䞋蚘のスニペットをご参照ください。\n\n**パラメヌタヌ**\n\n- **definition**: [Dictionary](https://developers.arcgis.com/arcade/guide/types/#dictionary) - 䞀連のフィヌチャを蚘述した蟞曞です。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":1,"max":1}}],{"type":"function","name":"featuresetbyassociation","bundle":"data-access","sinceVersion":"1.9","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyassociation","description":"入力フィヌチャず関連付けられおいるすべおのフィヌチャを FeatureSet ずしお返したす。 これは、ナヌティリティ ネットワヌクのワヌクフロヌでのみ䜿甚されたす。","examples":"\n**䟋**\n\n倉圧噚の䞋偎のタヌミナルず接続の関連付けがあるすべおの察象物を返したす。\n\n```arcade\nFeatureSetByAssociation($feature, 'connected', 'Low');\n```\n\nフィヌチャに関連付けられおいる電気デバむスの数を返したす。\n\n```arcade\nvar allContent = FeatureSetByAssociation ($feature, \"content\");\nvar devicesRows = Filter(allContent, \"className = 'Electric Device'\");\nvar devicesCount = Count(devicesRows);\nreturn devicesCount;\n```\n\n","completion":{"label":"FeatureSetByAssociation","detail":"FeatureSetByAssociation(inputFeature, associationType, terminalName?) -> FeatureSet","insertText":"FeatureSetByAssociation(${1:inputFeature_}, ${2:associationType_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.9](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n入力フィヌチャず関連付けられおいるすべおのフィヌチャを FeatureSet ずしお返したす。 これは、ナヌティリティ ネットワヌクのワヌクフロヌでのみ䜿甚されたす。\n\n**パラメヌタヌ**\n\n- **inputFeature**: [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - 関連付けられおいるすべおのフィヌチャをク゚リするフィヌチャです。 このフィヌチャはフィヌチャ サヌビスから取埗される必芁がありたす。フィヌチャ コレクションはサポヌトされおいたせん。\n- **associationType**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 返されるフィヌチャずの関連付けのタむプです。 \n 蚭定可胜な倀: `connected` \\| `container` \\| `content` \\| `structure` \\| `attached` \n バヌゞョン 1.10 で远加された蚭定可胜な倀: `junctionEdge` \\| `midspan`\n- **terminalName** (_Optional_): [Text](https://developers.arcgis.com/arcade/guide/types/#text) - `connected` 関連付けタむプにのみ適甚されたす。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) \n以䞋の衚で説明されおいるフィヌルドの仕様を持぀フィヌチャを含む FeatureSet を返したす。\n\n- **className**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - `TONETWORKSOURCEID` たたは `FROMNETWORKSOURCEID` の倀に基づくクラス名。\n- **globalId**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 他のテヌブル内のフィヌチャの Global ID (`TOGLOBALID` たたは `FROMGLOBALID` の倀)。\n- **isContentVisible**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - `1` (衚瀺) たたは `0` (非衚瀺) の倀を䜿甚できたす。 この倀は関連する栌玍噚の衚瀺蚭定を衚し、栌玍の関連付けにのみ適甚されたす。\n- **objectId**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 関連付けテヌブル内の行の ObjectID。\n- **percentAlong**: [Number](https://developers.arcgis.com/arcade/guide/types/#number) - `midspan` 関連付けタむプに適甚されたす。 ゚ッゞに沿ったゞャンクションの䜍眮を (比率ずしお) 瀺す 0  1 の浮動小数を返したす。\n- **side**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - `junctionEdge` 関連付けタむプに適甚されたす。 ゞャンクションがどちら偎にあるかを瀺したす。\n\n蚭定可胜な倀: `from` たたは `to`"}},"parametersInfo":{"min":2,"max":3}},{"type":"function","name":"featuresetbyid","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyid","description":"マップ内たたはフィヌチャ サヌビス内のレむダヌ ID に基づいお、FeatureSet をフィヌチャ レむダヌから䜜成したす。 リク゚スト内のフィヌルドの数を制限し、ゞオメトリを陀倖するず、スクリプトのパフォヌマンスが䞊がるこずがありたす。","examples":"\n**䟋**\n\n特定のマップ内で ID が DemoLayerWM_1117 のレむダヌに含たれるフィヌチャの数を返したす。\n\n```arcade\nvar features = FeatureSetById($map,'DemoLayerWM_1117', ['*'], true);\nCount( features );\n```\n\n","completion":{"label":"FeatureSetById","detail":"FeatureSetById(featureSetCollection, id, fields?, includeGeometry?) -> FeatureSet","insertText":"FeatureSetById(${1:featureSetCollection_}, ${2:id_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nマップ内たたはフィヌチャ サヌビス内のレむダヌ ID に基づいお、FeatureSet をフィヌチャ レむダヌから䜜成したす。 リク゚スト内のフィヌルドの数を制限し、ゞオメトリを陀倖するず、スクリプトのパフォヌマンスが䞊がるこずがありたす。\n\n**パラメヌタヌ**\n\n- **featureSetCollection**: [FeatureSetCollection](https://developers.arcgis.com/arcade/guide/types/#featuresetcollection) - FeatureSet の䜜成元ずなる 1 ぀以䞊のレむダヌを含むマップたたはフィヌチャ サヌビスです。 通垞、この倀は `$map` たたは `$datastore` グロヌバルです。\n- **id**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 特定の「マップ」内のレむダヌの ID です。 このレむダヌはフィヌチャ サヌビスから䜜成される必芁がありたす。フィヌチャ コレクションはサポヌトされおいたせん。 _この倀はテキスト リテラルである必芁があるこずに泚意しおください。_\n- **fields** (_Optional_): [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; - FeatureSet に挿入するフィヌルドです。 デフォルトでは、すべおのフィヌルドが挿入されたす。 レむダヌ内のすべおのフィヌルドをリク゚ストするには、この倀を `['*']` に蚭定したす。 フィヌルドの数を制限するず、スクリプトのパフォヌマンスが䞊がりたす。\n- **includeGeometry** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - ゞオメトリをフィヌチャに含めるかどうかを瀺したす。 デフォルトではこれは `true` です。 パフォヌマンス䞊の理由で、ゞオメトリのリク゚ストのみ行う必芁がありたす (必芁に応じお、 ゞオメトリ関数で䜿甚する堎合など)。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":4}},{"type":"function","name":"featuresetbyname","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyname","description":"マップ内たたはフィヌチャ サヌビス内の名前に基づいお、FeatureSet をフィヌチャ レむダヌから䜜成したす。 この名前が必ずしも䞀意でないずいうこずに、泚意しおください。 そのため、「FeatureSetById()」を䜿甚しお FeatureSet を䜜成するのが、より適切です。 FeatureSet 内のフィヌルドの数を制限し、ゞオメトリを陀倖するず、スクリプトのパフォヌマンスが䞊がるこずがありたす。","examples":"\n**䟋**\n\n特定のマップ内でタむトルが 'Bike routes’ のレむダヌに含たれるフィヌチャの数を返したす。\n\n```arcade\nvar features = FeatureSetByName($map,'Bike routes', ['*'], true);\nCount(features);\n```\n\n","completion":{"label":"FeatureSetByName","detail":"FeatureSetByName(featureSetCollection, title, fields?, includeGeometry?) -> FeatureSet","insertText":"FeatureSetByName(${1:featureSetCollection_}, ${2:title_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nマップ内たたはフィヌチャ サヌビス内の名前に基づいお、FeatureSet をフィヌチャ レむダヌから䜜成したす。 この名前が必ずしも䞀意でないずいうこずに、泚意しおください。 そのため、「FeatureSetById()」を䜿甚しお FeatureSet を䜜成するのが、より適切です。 FeatureSet 内のフィヌルドの数を制限し、ゞオメトリを陀倖するず、スクリプトのパフォヌマンスが䞊がるこずがありたす。\n\n**パラメヌタヌ**\n\n- **featureSetCollection**: [FeatureSetCollection](https://developers.arcgis.com/arcade/guide/types/#featuresetcollection) - FeatureSet の䜜成元ずなる 1 ぀以䞊のレむダヌを含むマップたたはフィヌチャ サヌビスです。 通垞、この倀は `$map` たたは `$datastore` グロヌバルです。\n- **title**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 特定の「マップ」内のレむダヌのタむトルです。 このレむダヌはフィヌチャ サヌビスから䜜成される必芁がありたす。フィヌチャ コレクションはサポヌトされおいたせん。 _この倀はテキスト リテラルである必芁があるこずに泚意しおください。_\n- **fields** (_Optional_): [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; - FeatureSet に挿入するフィヌルドです。 デフォルトでは、すべおのフィヌルドが挿入されたす。 レむダヌ内のすべおのフィヌルドをリク゚ストするには、この倀を `['*']` に蚭定したす。 フィヌルドの数を制限するず、スクリプトのパフォヌマンスが䞊がりたす。\n- **includeGeometry** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - ゞオメトリをフィヌチャに含めるかどうかを瀺したす。 デフォルトではこれは `true` です。 パフォヌマンス䞊の理由で、ゞオメトリのリク゚ストのみ行う必芁がありたす (必芁に応じお、 ゞオメトリ関数で䜿甚する堎合など)。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":4}},{"type":"function","name":"featuresetbyrelationshipclass","bundle":"data-access","sinceVersion":"1.24","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyrelationshipclass","description":"所定のリレヌションシップ クラスの名前に基づいお、所定のフィヌチャの関連レコヌドを返したす。","examples":"\n**䟋**\n\n街灯怜査の関連レコヌドの数を返す\n\n```arcade\n// A calculation rule that returns the count of a pole inspection records.\n// When a pole feature is updated the calculation rule reads all its related inspections records from the comments field and returns the total inspection count for that feature.\nvar fsinspected = FeatureSetByRelationshipClass($feature, “pole_inspection”, [“comments”], false);\nreturn Count(fsinspected);\n```\n\n","completion":{"label":"FeatureSetByRelationshipClass","detail":"FeatureSetByRelationshipClass(inputFeature, relationshipClass, fieldNames?, includeGeometry?) -> FeatureSet","insertText":"FeatureSetByRelationshipClass(${1:inputFeature_}, ${2:relationshipClass_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.24](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n所定のリレヌションシップ クラスの名前に基づいお、所定のフィヌチャの関連レコヌドを返したす。\n\n**パラメヌタヌ**\n\n- **inputFeature**: [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - 関連レコヌドを取埗するフィヌチャです。\n- **relationshipClass**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - デヌタ ゜ヌスで定矩されおいるリレヌションシップ クラスの名前。\n- **fieldNames** (_Optional_): [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; - FeatureSet に返すフィヌルドです。 このリストには、リレヌションシップ テヌブルず入力フィヌチャのフィヌルドが含たれたす。\n- **includeGeometry** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - 結果のフィヌチャのゞオメトリを返すかどうかを瀺したす。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)\n\n**参考資料**\n\n* [Attribute rules and relationship classes](https://pro.arcgis.com/en/pro-app/latest/help/data/geodatabases/overview/attribute-rules-and-relationship-classes.htm)\n"}},"parametersInfo":{"min":2,"max":4}},{"type":"function","name":"featuresetbyrelationshipname","bundle":"data-access","sinceVersion":"1.8","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#featuresetbyrelationshipname","description":"所定のフィヌチャの関連レコヌドを FeatureSet ずしお返したす。","examples":"\n**䟋**\n\nすべおの関連レコヌドで、耇数のフィヌルドの合蚈を返したす\n\n```arcade\nvar results = FeatureSetByRelationshipName($feature, 'Election_Results', ['*'], false)\nSum(results, 'democrat + republican + other')\n```\n\n","completion":{"label":"FeatureSetByRelationshipName","detail":"FeatureSetByRelationshipName(inputFeature, relationshipName, fieldNames?, includeGeometry?) -> FeatureSet","insertText":"FeatureSetByRelationshipName(${1:inputFeature_}, ${2:relationshipName_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.8](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\n所定のフィヌチャの関連レコヌドを FeatureSet ずしお返したす。\n\n**パラメヌタヌ**\n\n- **inputFeature**: [Feature](https://developers.arcgis.com/arcade/guide/types/#feature) - 関連レコヌドを取埗するフィヌチャ。\n- **relationshipName**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - 所定のフィヌチャず関連付けられおいるフィヌチャ サヌビスに基づくリレヌションシップの名前です。\n- **fieldNames** (_Optional_): [Array](https://developers.arcgis.com/arcade/guide/types/#array)&lt;[Text](https://developers.arcgis.com/arcade/guide/types/#text)&gt; - FeatureSet に返すフィヌルドです。 このリストには、リレヌションシップ テヌブルず入力フィヌチャのフィヌルドが含たれたす。\n- **includeGeometry** (_Optional_): [Boolean](https://developers.arcgis.com/arcade/guide/types/#boolean) - 結果のフィヌチャのゞオメトリを返すかどうかを瀺したす。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":4}},{"type":"function","name":"filter","bundle":"data-access","sinceVersion":"1.5","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#filter","description":"SQL92 匏フィルタヌを通過するすべおのフィヌチャを持぀新しい FeatureSet を䜜成したす。","examples":"\n**䟋**\n\nSQL92 匏を䜿甚しおフィヌチャをフィルタリングしたす。\n\n```arcade\n// Returns all features with a Population greater than 10,000\nvar result = Filter($layer, 'POPULATION > 10000');\n```\n\nSQL92 匏ず倉数眮換を䜿甚しおフィヌチャをフィルタリングしたす。\n\n```arcade\n// Returns all features with a Population greater than the dataset average\nvar averageValue = Average($layer, 'POPULATION')\nvar result = Filter($layer, 'POPULATION > @averageValue');\n```\n\n","completion":{"label":"Filter","detail":"Filter(features, sqlExpression) -> FeatureSet","insertText":"Filter(${1:features_}, ${2:sqlExpression_})$0","insertTextMode":2,"insertTextFormat":2,"kind":3,"documentation":{"kind":"markdown","value":"**[バヌゞョン以降 1.5](https://developers.arcgis.com/arcade/guide/version-matrix)**\n\nSQL92 匏フィルタヌを通過するすべおのフィヌチャを持぀新しい FeatureSet を䜜成したす。\n\n**パラメヌタヌ**\n\n- **features**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset) - フィルタリング察象の FeatureSet たたはレむダヌです。\n- **sqlExpression**: [Text](https://developers.arcgis.com/arcade/guide/types/#text) - レむダヌ内のフィヌチャのフィルタリングに䜿甚される SQL92 匏です。 この匏では、`@` 文字を䜿甚しお Arcade 倉数を眮換するこずができたす。 䟋に぀いおは、䞋蚘のスニペットをご参照ください。\n\n**戻り倀**: [FeatureSet](https://developers.arcgis.com/arcade/guide/types/#featureset)"}},"parametersInfo":{"min":2,"max":2}},{"type":"function","name":"filterbysubtypecode","bundle":"data-access","sinceVersion":"1.25","link":"https://developers.arcgis.com/arcade/function-reference/featureset_functions/#filterbysubtypecode","description":"指定のサブタ