Skip to content

Instantly share code, notes, and snippets.

@aaizemberg
Last active March 15, 2017 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaizemberg/ccc8b1af35b1bc6282c6 to your computer and use it in GitHub Desktop.
Save aaizemberg/ccc8b1af35b1bc6282c6 to your computer and use it in GitHub Desktop.
NDVI from RemotePixel

Remote Pixel | Landsat 8 ndvi series

https://remotepixel.ca/projects/landsat8ndvi.html

console.log("cloud,date,ndvi");
for (var i = 0; i < scope.ndvi_values.length; i++) { 
  console.log( scope.ndvi_values[i].cloud + "," + scope.ndvi_values[i].date + "," + scope.ndvi_values[i].ndvi );
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ndvi</title>
</head>
<body>
<!-- <iframe width="800" height="600" src="https://app.powerbi.com/view?r=eyJrIjoiM2RkZDRiNzQtYTdhMy00NGI0LThjZDgtMmY0YjI1MGI2MGFlIiwidCI6ImExZjUwYTk3LTIxYzAtNDlhNy1hOWQ0LWYyNDRlYmI0MmRhNyIsImMiOjR9" frameborder="0"></iframe> -->
<iframe width="933" height="700" src="https://app.powerbi.com/view?r=eyJrIjoiMzI2ZGFmMmItNGVjYS00N2YwLTgyNTAtZDg4MDRhMGQ4MTNiIiwidCI6ImExZjUwYTk3LTIxYzAtNDlhNy1hOWQ0LWYyNDRlYmI0MmRhNyIsImMiOjR9" frameborder="0" allowFullScreen="true"></iframe>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment