Skip to content

Commit

Permalink
initial jbook commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Lewandowski committed Apr 10, 2024
1 parent 224d0d8 commit 8ecd823
Show file tree
Hide file tree
Showing 11 changed files with 598 additions and 199 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# HydroSAR
# Start Here

## About the HydroSAR Project
HydroSAR is a project funded by the NASA Applied Sciences Program focused on the development of algorithms for the monitoring of hydrological hazards using data from Synthetic Aperture Radar (SAR) sensors. Algorithms are being developed for the following SAR-derived products:
- **RTC30:** Time series of Radiometrically Terrain Corrected (RTC) SAR images provided at 30 m resolution.
Expand Down
29 changes: 29 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
title: HydroSAR Jupyter Book
author: The HydroSAR Team
logo: hydrosar_logo.jpeg

# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
execute:
execute_notebooks: 'off'

# Define the name of the latex output file for PDF builds
latex:
latex_documents:
targetname: book.tex

# Add a bibtex file so that we can create citations
bibtex_bibfiles:
- references.bib

# Information about where the book exists on the web
repository:
url: https://github.com/HydroSAR/HydroSAR # Online location of your book
path_to_book: . # Optional path to your book, relative to the repository root
branch: main # Which branch of the repository should be used when creating links (optional)

# Add GitHub buttons to your book
# See https://jupyterbook.org/customize/config.html#add-a-link-to-your-repository
html:
use_issues_button: true
use_repository_button: true
13 changes: 13 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
format: jb-book
root: README
parts:
- caption: Start Here
chapters:
- file: README.md
- caption: Environments
chapters:
- file: notebooks/a_Software_Environments.ipynb
- caption: Data Access
chapters:
- file: notebooks/1-Prepare_Data_Stack.ipynb

25 changes: 25 additions & 0 deletions environments/fierpy_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: fierpy
channels:
- conda-forge
dependencies:
- eofs
- gdal
- geoglows
- ipyfilechooser
- ipympl
- jupyterlab
- ipywidgets
- keras
- matplotlib
- numpy
- opensarlab_lib
- pandas
- rioxarray
- scikit-learn
- scipy
- xarray
- pip
- pip:
- git+https://github.com/servir/fierpy.git
- tensorflow

21 changes: 21 additions & 0 deletions environments/hydrosar_hand_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: hydrosar_hand
channels:
- conda-forge
dependencies:
- python==3.11
- affine
- astropy
- fiona
- gdal
- geopandas
- ipympl
- jupyterlab
- ipyfilechooser
- ipywidgets
- pip
- pyproj
- pysheds
- rasterio
- scipy
- shapely
- tqdm
20 changes: 20 additions & 0 deletions environments/hydrosar_rtc_era5_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: hydrosar_rtc_era5
channels:
- conda-forge
dependencies:
- cdsapi
- gdal
- hyp3_sdk
- ipyfilechooser
- ipympl
- jupyterlab
- matplotlib
- numpy
- opensarlab_lib
- pandas
- pip
- pyproj
- rasterio
- xarray
- pip:
- url_widget
17 changes: 17 additions & 0 deletions environments/hydrosar_water_mask_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: hydrosar_water_mask
channels:
- conda-forge
dependencies:
- python==3.11
- gdal
- ipyfilechooser
- ipympl
- jupyterlab
- matplotlib
- numpy
- opensarlab_lib
- pandas
- pip
- pyproj
- rasterio
- scikit-fuzzy
Binary file added hydrosar_logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8ecd823

Please sign in to comment.