Regulatory Boundary Mapping
knowledge skill
Maps jurisdiction-specific regulatory boundaries for a given activity by cross-referencing geospatial coordinates with authoritative legal datasets. Produces a machine-readable polygon set defining where rules apply or do not apply.
Worked examples
- {"input": {"activity": "commercial fishing", "location": {"lat": 44.636, "lng": -124.053}, "jurisdiction": "US-NOAA"}, "output": {"boundary_polygons": [{"polygon_id": "NOAA_Fish_Zone_12", "coordinates": [[[-124.5, 45.0], [-123.5, 45.0], [-123.5, 44.5], [-124.5, 44.5]]], "rules": ["Groundfish trawl gear prohibited", "Daily trip limit: 500 lbs"]}], "confidence_score": 0.98, "source_versions": {"US-NOAA": "2024-05-15-v2.1"}}}
- {"input": {"activity": "drone delivery", "location": {"lat": 37.7749, "lng": -122.4194}, "jurisdiction": "US-FAA"}, "output": {"boundary_polygons": [{"polygon_id": "FAA_No_Drone_Zone_SFO", "coordinates": [[[-122.5, 37.8], [-122.3, 37.8], [-122.3, 37.7], [-122.5, 37.7]]], "rules": ["Class B airspace", "UAS prohibited without ATC authorization"]}], "confidence_score": 0.95, "source_versions": {"US-FAA": "2024-06-01-v3.0"}}}
Input
- activity: string (e.g., 'commercial fishing')
- location: object { lat: number, lng: number }
- jurisdiction: string (e.g., 'US-EPA')
Output
- boundary_polygons: array of objects { polygon_id: string, coordinates: [[number, number]], rules: [string] }
- confidence_score: number (0-1)
- source_versions: object { jurisdiction: string, version: string }
Details
- Skill type: knowledge skill
- Safety level: safe_public_research
- Version: 1.0.0