A limnograph is a chart or graph that records water level (stage) variations in a body of water, such as a river or lake, over time. It is commonly used in hydrology to visualize daily, seasonal, or historical changes in water levels, helping researchers and resource managers understand patterns and trends.
The original data for this project is sourced from:
Install dependencies:
npm install
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Check out the deployment documentation for more information.
To convert the raw CSV data to point data for visualization, run the following command from the app/data
directory:
cd app/data
node csvs_to_points.js
This will process historical.csv
& current_year.csv
into an optimized format for displays daily averages.