You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Set initial camera view to Italy bounding box (6.6-18.8°E, 36.6-47.1°N)
- Configure Home button to reset to Italy instead of global view
- Use postRender event listener to apply camera after first render
- Prevents resize/tab visibility issues with early camera positioning
This provides a more useful default view for the OpenContext dataset,
which is heavily concentrated in Mediterranean archaeological sites.
Also update .gitignore to exclude Quarto intermediate files (*.quarto_ipynb).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
**Current implementation**: All 198,433 GeospatialCoordLocations are rendered identically (orange points), without differentiating their semantic roles in the graph.
679
+
680
+
**Discovery**: Analysis of the OpenContext parquet data reveals that geos fall into three distinct categories based on their usage:
681
+
682
+
1.**`sample_location_only`**: Precise field collection points (Path 1)
683
+
- Most common category
684
+
- Represents exact GPS coordinates where sampling events occurred
685
+
- Varies per event, even within the same site
686
+
687
+
2.**`site_location_only`**: Administrative site markers (Path 2)
688
+
- Represents general/reference locations for named archaeological sites
689
+
- One coordinate per site
690
+
- May not correspond to any actual collection point
- Client-side rendering: Medium (conditional styling in Cesium primitives)
790
+
- UI controls: Medium (checkbox filters + event handlers)
791
+
- Advanced features: High (site explorer mode with interactive highlighting)
792
+
793
+
**Performance impact**: Minimal
794
+
- Same 198k points, just enriched with `location_type` metadata
795
+
- Filtering happens client-side (fast)
796
+
- Could add server-side aggregation for zoom-based LOD
797
+
798
+
This enhancement would transform the visualization from "pretty dots on a map" into a pedagogical tool for understanding the iSamples metadata model architecture.
0 commit comments