LATTICE Georeferencing and Reality Capture

Enforce EPSG-normalized georeferencing and validate Pixeltable mirror and index readiness.

3|Updated May 11, 2026
One-click install
npx skills add https://github.com/JeromyJSmith/lattice-platform --skill lattice-georeferencing-and-reality-capture
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: LATTICE Georeferencing and Reality Capture
Source: https://github.com/JeromyJSmith/lattice-platform/tree/main/.agents/skills/lattice-georef
Command: npx skills add https://github.com/JeromyJSmith/lattice-platform --skill lattice-georeferencing-and-reality-capture

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents georeferencing and reality-capture pipelines from producing inconsistent, non-reprojected, or malformed coordinate data by enforcing EPSG normalization before any Pixeltable write.

Core Features & Use Cases

  • EPSG-normalized ingest for 7 formats: Implements georef converter stubs and ensures all extracted coordinates are transformed to WGS84 (EPSG:4326) before writing to the lattice/bridge/project_georef table.
  • Reality mirror state validation: Detects mirror drift by validating lattice/reality/mirror_state sync warnings and blocks or signals issues before the next ingest cycle writes new rows.
  • Spatial index integrity checks: Verifies PostGIS/GiST index status on geometry columns used by downstream spatial queries, keeping runtime analytics stable.

Quick Start

Run the georef section cycle to implement missing converters, normalize EPSG coverage, and confirm mirror sync health for the next ingestion run.

Frequently Asked Questions about LATTICE Georeferencing and Reality Capture

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I normalize EPSG coordinates for GeoTIFF and shapefile ingestion?

To normalize EPSG coordinates during ingestion, this Skill reprojects captured spatial data to WGS84 (EPSG:4326) via pyproj before writing WKT POINTs to the project_georef table. It implements missing format converters for GeoTIFF and shapefile sources to prevent 501 errors.

Why does my reality capture ingest return a NotImplementedError?

Your reality capture ingest returns a NotImplementedError because missing georef converter stubs fail to process source formats. This Skill implements these format converters for KML, IFC, OSM, and DXF sources to successfully ingest data without raising NotImplementedErrors.

How do I validate PostGIS spatial indexes on geometry columns?

To validate PostGIS spatial indexes, this Skill verifies GiST index status directly on geometry columns used by downstream spatial queries. This spatial index integrity check keeps runtime analytics stable and ensures reliable coordinate data retrieval.

Can I use this to fix EPSG gaps before writing to the Pixeltable mirror?

Yes, you can use this to fix EPSG gaps before writing to the Pixeltable mirror. It enforces EPSG normalization prior to any Pixeltable write and validates mirror_state sync warnings to detect and block mirror drift before the next ingest cycle.

What spatial data formats are supported for EPSG-normalized ingest?

Supported spatial data formats for EPSG-normalized ingest include KML, shapefile, GeoTIFF, survey CSV, IFC, OSM, and DXF. The Skill extracts coordinates from these formats and enforces WGS84 (EPSG:4326) reprojection via pyproj for all extracted data.

How do I check mirror sync drift before running a georef ingest cycle?

To check mirror sync drift, this Skill validates lattice/reality/mirror_state sync warnings to detect drift issues. It blocks or signals these issues before the next ingest cycle writes new rows, ensuring reliable reality capture ingestion.