Skip to main content
Glama

時系列変化検出

analyze_timeseries

指定エリア・期間のSentinel-1 SAR時系列データから地表面の変化を検出します。 ■ 入力: WKT形式ポリゴン + 日付範囲(YYYY-MM-DD)。satellite_id は sentinel-1 を指定。 ■ 面積制限: 最大5km²。超える場合はエリアを分割してください。timeseries は出力フィーチャー密度が高くGeoJSONが重くなるため、ポリゴン型ツールより上限を厳しく設定している。 ■ 処理: 期間内の複数シーンを時系列解析。所要時間は面積・期間に依存。 ■ 出力: 変化が検出されたエリアのポリゴン・変化指標を含むGeoJSON。 ■ フロー: ジョブ投入後 job_id が返される。check_job_status でポーリングし、completed 後に get_job_result で結果取得。 ■ 実行前に preview_analysis で解析範囲と消費クレジットを確認し、ユーザーの承認を得てください。ジョブは投入後にキャンセルできません。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
polygonYesWKT形式ポリゴン(例: POLYGON((139.7 35.6, 139.8 35.6, 139.8 35.7, 139.7 35.7, 139.7 35.6)))。最大5km²
date_endYes解析終了日(YYYY-MM-DD)
date_startYes解析開始日(YYYY-MM-DD)
satellite_idYes衛星ID。現在 sentinel-1 のみ対応
orbit_directionNo軌道方向(ascending / descending)。省略時は自動判定

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only say readOnly=false and destructive=false, so the description carries the behavioral burden and succeeds: it reveals the async job flow (job_id, check_job_status, get_job_result), explains why the area cap is stricter (dense GeoJSON output), and warns the job cannot be canceled once submitted.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is neatly divided into input, area limit, processing, output, flow, and pre-flight confirmation sections. Every bullet carries actionable information, and the most important scoping constraint is front-loaded near the beginning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an asynchronous, high-cost analysis tool with no output schema, the description is unusually complete: it specifies required parameters, constraints, expected output format, polling/result retrieval, and the required preview/approval step. No critical call-time information is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline applies; the description largely mirrors schema details such as WKT format, date format, and sentinel-1 satellite_id. It adds a small amount of contextual meaning (max 5km² and area-splitting guidance), but no new parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: detects surface changes from Sentinel-1 SAR time-series data in a given area/period. The input/output sections make the scope concrete, and the time-series aspect distinguishes it from sibling object-specific analyzers like analyze_newbuilding and analyze_ship.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The tool gives clear operating context: WKT polygon plus date range, a strict 5km² area cap with a split instruction, and a mandatory preview_analysis step with user approval before job submission. It does not explicitly name sibling analyzers to select instead, so it stops short of full when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each analysis tool targets a distinct detection type (buildings disappearing, new buildings, oil slick, ships, surface changes), and job management tools have clear separate roles (status, result, list). The polygon drawing and preview tools are also uniquely scoped.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: analyze_* for detections, check_job_status / get_job_result / list_jobs for job operations, and open_polygon_draw / preview_analysis for supporting actions. No mixed conventions or vague verbs.

Tool Count5/5

Ten tools cover the full workflow without redundancy: five analysis types, three job management utilities, one drawing helper, and one preview gate. This is well-scoped for a satellite analysis server.

Completeness5/5

The workflow is complete: preview to approve, submit analysis, poll status, retrieve results, list past jobs, and draw polygons. The domain covers the major SAR-based detection needs and includes explicit guidance for handling long-running jobs.

Resources