-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Generate project intervals on frontend
- Loading branch information
David Code Howard
committed
Jan 3, 2024
1 parent
d31f266
commit bc7655d
Showing
3 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 @@ | ||
type DepthIntervalBounds = { | ||
start: number; | ||
end: number; | ||
}; | ||
|
||
export const PRESETS: Record<'LANDPKS' | 'NRCS', DepthIntervalBounds[]> = { | ||
LANDPKS: [ | ||
{ start: 0, end: 10 }, | ||
{ start: 10, end: 20 }, | ||
{ start: 20, end: 50 }, | ||
{ start: 50, end: 70 }, | ||
{ start: 70, end: 100 }, | ||
{ start: 100, end: 200 }, | ||
], | ||
NRCS: [ | ||
{ start: 0, end: 5 }, | ||
{ start: 5, end: 15 }, | ||
{ start: 15, end: 30 }, | ||
{ start: 30, end: 60 }, | ||
{ start: 60, end: 100 }, | ||
{ start: 100, end: 200 }, | ||
], | ||
}; |
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