Getting Started in Snowflake
The easiest way to understand the product is to start with the context tables, then move into behavioural and spatial datasets.
Start with the metadata tables
Section titled “Start with the metadata tables”Begin with:
LISTING.SITE_METADATALISTING.AUDIT_METADATALISTING.PLAN_METADATA
These tables tell you:
- which places are included
- when audits were undertaken
- what plan and spatial reference coverage exists
Then move into the core analytical datasets
Section titled “Then move into the core analytical datasets”For most first-pass analysis, start with:
LISTING.MOVEMENT_COUNTSLISTING.DWELL_OBSERVATIONSLISTING.TRACE_PATHS
These cover:
- movement volumes and mode
- observed dwell behaviour and time spent
- derived path linework for observed movement through a place
Use the shared keys consistently
Section titled “Use the shared keys consistently”The listing is designed around a small set of common keys:
SiteGuidAuditGuidPlanId
Use:
SiteGuidto compare everything at the place levelAuditGuidto compare everything within a specific auditPlanIdwhen you need to relate spatial observations back to a georeferenced plan
First query sequence
Section titled “First query sequence”This is the cleanest way to get oriented:
- Query
LISTING.AUDIT_METADATAto see the available audits and dates. - Query
LISTING.SITE_METADATAto understand site-level context. - Query
LISTING.MOVEMENT_COUNTSfor first movement analysis. - Query
LISTING.DWELL_OBSERVATIONSfor behavioural use of place. - Add
LISTING.TRACE_PATHSorLISTING.SITE_INVENTORYonce you want spatial detail.
Geospatial handling
Section titled “Geospatial handling”The simplest pattern is:
SELECT SiteName, TRY_TO_GEOGRAPHY(GeometryWkt) AS geomFROM LISTING.TRACE_PATHSWHERE GeometryWkt IS NOT NULL;Use TRY_TO_GEOGRAPHY(GeometryWkt) as the standard path for spatial analysis inside Snowflake.
Important scope notes
Section titled “Important scope notes”TRACE_PATHSandFACADE_QUALITYcontain derived geometry, not native GIS capture.INTERCEPT_RESPONSESandOBSERVATIONScontain curated qualitative content.- photo and video media are not included in the current sample release.
- Governed plan image links are available through the metadata views where applicable.