-
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.
- Loading branch information
Showing
2 changed files
with
23 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + TS</title> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>ndwi</title> | ||
</head> | ||
<body> | ||
<div> | ||
this is a litte project that let you upload b3 and b5 | ||
band of a landsat 8 image and calculate the ndwi index | ||
</div> | ||
<div id="files"> | ||
<input type="file" id="b3" name="b3"> | ||
<input type="file" id="b5" name="b5"> | ||
<button id="btn">ok </button> | ||
<input type="range" id="range">choose ndwi(0~1)</input> | ||
<input id="opening">enter a number to opening opeartion</input> | ||
</div> | ||
|
||
|
||
<script src="/node_modules/tiff.js/tiff.min.js" ></script> | ||
<script src="/src/ndwi.ts" type="module"></script> | ||
</body> | ||
</html> |