Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg-info/
*.egg
dist/
build/

# Virtual environment
.venv/
venv/
env/

# Pytest / coverage
.pytest_cache/
.coverage
htmlcov/

# Data files (large, transferred separately)
data/*.parquet
data/*.xlsx
data/*.csv
data/*.tif
data/*.geojson

# Pipeline cache and intermediate outputs
cache/

# Jupyter
.ipynb_checkpoints/
*.ipynb

# OS
.DS_Store
Thumbs.db

# IDE
.vscode/settings.json
.idea/
Binary file added docs/study_boundary/study_area.gpkg
Binary file not shown.
4 changes: 4 additions & 0 deletions scripts/open_parquet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# impport parquet
import pyarrow.parquet as pq
table = pq.read_table(r"C:\Users\Ali\OneDrive - CUNY\Desktop\SI\fimbox_SI26\data\usgs_rating_curves.parquet")
print(table)
Loading