graph TD
USER_NODE[("User<br>Submits Vector Data<br>(e.g., SHP, GPKG, GeoJSON, CSV, KML, FlatGeobuf, validated GeoParquet)")]
subgraph "Cloud Ingestion & Data Lake Pipeline"
FB_FUNCTION["Firebase Function (TS/Python)<br>Receives Upload<br>Validates & Routes Data<br>Orchestrates Formatting"]
subgraph "File Formatting Firebase Function (Invoked by Firebase Function)"
direction TB
INPUT_DATA[("Received User Data<br>(Diverse Formats as submitted)")]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useEffect } from 'react'; | |
// ... | |
const { var1, var2, var3 } = props | |
useEffect(() => { | |
console.log('tell me what loaded first time', { var1, var2, var3 }) | |
}, []) | |
useEffect(() => { | |
console.log('tell me what changed plz ', { var1, var2, var3 }) | |
}) |