Have MMW running locally. Open this page. Hover over the map to highlight UTFGrid blocks.
Pieced together with ideas from:
#!/usr/bin/env bash | |
set -ex | |
### | |
# Basic settings | |
### | |
# Model My Watershed URL to hit | |
MMW_API_URL="http://localhost:8000/api" |
Get-ChildItem "." -Filter "*.mp4" | Foreach-Object { | |
$year = $_.BaseName.Substring(0, 4) | |
$month = $_.BaseName.Substring(4, 2) | |
$day = $_.BaseName.Substring(6, 2) | |
$hour = $_.BaseName.Substring(9, 2) | |
$minute = $_.BaseName.Substring(11, 2) | |
$second = $_.BaseName.Substring(13, 2) | |
$newName = "$($year)-$($month)-$($day) $($hour).$($minute).$($second)" |