-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add NGIAB and Data Preprocess end-to-end flow video to documentation (#…
…214)
- Loading branch information
Showing
4 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
21 changes: 21 additions & 0 deletions
21
...roducts/Community Hydrologic Modeling Framework/nextgeninaboxDocker/workflow.md
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
sidebar_position: 4 | ||
title: "NGIAB Workflow Video" | ||
description: "NextGen In a Box (NGIAB) Workflow Video" | ||
tags: | ||
- NextGen In A Box | ||
- NGIAB | ||
- NGIAB Data Preprocess | ||
- Demonstration | ||
- Video | ||
- Workflow | ||
--- | ||
|
||
# NGIAB and NGIAB Data Preprocess: | ||
## End-to-End Workflow Demonstration | ||
|
||
This video demonstrates the complete end-to-end workflow of running the NextGen In A Box (NGIAB) with the NGIAB Data Preprocess. Watch as the Data Preprocess builds and validates input data, followed by NGIAB executing the NextGen model and handling the output. | ||
|
||
import VideoPlayer from '/src/components/VideoPlayer.js'; | ||
|
||
<VideoPlayer url="https://youtu.be/Z1iov-o23ug" /> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
import React from 'react'; | ||
import ReactPlayer from 'react-player'; | ||
|
||
export default function VideoPlayer({ url }) { | ||
const ResponsivePlayer = ({ url }) => { | ||
return ( | ||
<ReactPlayer url={url} width="100%" height="400px" controls /> | ||
<div className="player-wrapper"> | ||
<ReactPlayer | ||
className="react-player" | ||
url={url} | ||
width="100%" | ||
height="100%" | ||
controls | ||
/> | ||
</div> | ||
); | ||
} | ||
}; | ||
|
||
export default ResponsivePlayer; |
This file contains 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