Web-based dashboard/tool to provide MNRF and emergency managers with improved access to near real-time information
Feb-07-2018 Project created
Develop a web-based dashboard/tool to provide MNRF and emergency managers with improved access to near real-time information. The purpose of the new dashboard/tool will be to support emergency management in Ontario’s Far North.
npm install
npm start
https://mnrf-jcousineau.c9users.io/
Albany River
Attawapiskat River
Moose River
Winisk River
KISTERS QueryServices (http://204.41.16.133/KiWIS/KiWIS?service=kisters&type=queryServices&request=getRequestInfo&datasource=0&format=html)
Albany
station_no: 04HA001
station_id: 146399
Albany@Fishing
station_no: 04HA002
station_id: 146412
Albany@Stooping
station_no: 04HA003
station_id: 481782
Attawapiskat
station_no: 04FC001
station_id: 146273
Moose
station_no: 04LG004
station_id: 146658
Winisk
station_no: 04DC001
station_id: 146172
Flickr (https://www.flickr.com/photos/145447898@N03/)
WMS service from weather.gc.ca
https://geo.weather.gc.ca/geomet/?LANG=E&SERVICE=WMS&VERSION=1.1.1&request=GetMap&LAYERS=RDPS.ETA_RT&format=image/png&bbox={bbox-epsg-3857}&srs=EPSG:3857&width=256&height=256&TRANSPARENT=true http://geo.weather.gc.ca/geomet//?LANG=E%26SERVICE=WMS%26VERSION=1.1.1%26REQUEST=GetLegendGraphic%26STYLE=PRECIPRTMMH%26LAYER=RDPS.ETA_RT%26format=image/png
https://geo.weather.gc.ca/geomet/?LANG=E&SERVICE=WMS&VERSION=1.1.1&request=GetMap&LAYERS=RDPS.ETA_RN&format=image/png&bbox={bbox-epsg-3857}&srs=EPSG:3857&width=256&height=256&TRANSPARENT=true http://geo.weather.gc.ca/geomet//?LANG=E%26SERVICE=WMS%26VERSION=1.1.1%26REQUEST=GetLegendGraphic%26STYLE=PRECIPMM%26LAYER=RDPS.ETA_RN%26format=image/png
Radarsat images are coming directly from MNRF.
TIF and KMZ/KMZ are both images. Radarsat is not a vector file but raster file.
Note:GEOJSON/Shapefile would be best instead of images.
Plot Template : https://codepen.io/jcousineau/pen/oEZraY
https://github.com/rywhale/kiwisR/tree/master/R
getStationList (http://204.41.16.133/KiWIS/KiWIS?service=kisters&type=queryServices&request=getStationList&datasource=0&format=objson)
getTimeseriesList (http://204.41.16.133/KiWIS/KiWIS?service=kisters&type=queryServices&request=getTimeseriesList&datasource=0&format=objson&station_id=146399)
(http://204.41.16.133/KiWIS/KiWIS?service=kisters&type=queryServices&request=getTimeseriesValues&datasource=0&format=dajson&ts_id=967804042&from=2018-02-10&to=2018-02-11) Is slow sometimes, for example : http://204.41.16.133/KiWIS/KiWIS?service=kisters&type=queryServices&request=getTimeseriesValues&datasource=0&format=csv&ts_id=967958042&from=2018-02-11&to=2018-02-12
Albany River above Fishing Creek Island (gauge cam)(No Thresholds)
Albany River near Hat Island (gauge cam) (LVL: 3.3, 4.29, 5.14, 5.9) (Flow:1500, 3000, 4500, 6000)
Stooping River above the Mouth (gauge cam) (No Thresholds)
Albany River above Nottick Island (No Thresholds)
Kenagami River near Mammamattawa (LVL: 23.5, 25, 26.5, 28) (Flow: No Flow thresholds)
Pagwachuan River at Hwy 11 (LVL: 10.98, 12.65, 14.33, 16.0) (Flow: 101.5, 203, 304, 406)
Nagagami River at Hwy 11 (LVL: 2.75, 3.15, 3.45, 3.7, 3.99)(Flow: 40, 135, 200, 250)
Little Current River at Percy Lake (No Thresholds)
Use flickr API and REST
Testing Api
Get all photos from account (https://www.flickr.com/services/api/explore/flickr.people.getPhotos) (i.e. user_id=145447898@N03, min_upload_date=2018-01-21, per_page=500)
The site will create this link (https://api.flickr.com/services/rest/?method=flickr.people.getPhotos&api_key=0496671cc41a7050d35902b2428ebffc&user_id=145447898%40N03&min_upload_date=2018-01-21&per_page=500&format=json&nojsoncallback=1&api_sig=c62934d6178aa6b12521af8849a4bf37)
Get photo info (https://www.flickr.com/services/api/explore/flickr.photos.getInfo) (i.e photo_id=37555690575)
The site will create this link (https://api.flickr.com/services/rest/?method=flickr.photos.getInfo&api_key=f61852d3561fc798e108a8dd505f5a0d&photo_id=37555690575&format=rest&api_sig=573cc5c2914d437fa2a880129c1b02ac)
The JSON file can be sorted by the title attribute. Here's an exmaple of the JSON row:
{ "id": "40027637332", "owner": "145447898@N03", "secret": "d5027f8efe", "server": "4616", "farm": 5, "title": "04FC001_Attawapiskat_Rv_20180203150108.jpg", "ispublic": 1, "isfriend": 0, "isfamily": 0 },
JPG Link Format
https://c1.staticflickr.com/{farm}/{server}/{id}_{secret}_b.jpg
https://c1.staticflickr.com/5/4616/40027637332_d5027f8efe_b.jpg
Title example: 04HA001_ALBANY_RV_20180207200058.jpg
Initial Appoach: Read directly the tif in Mapbox. Does not work, memory issue in the web browser due to large files. Need to convert to tiles.
First Approach : Change Tif to geojson using rasterio. (Requires a lot of processing to convert to polygons. This approach was abandon)
Second Approach : Raster Tile server using tilestrata and GDAL2Tiles
Tested tilestrata and GDAL2Tiles on workspace called "tilestrata".
File transfer
First Idea: Use Azure cloud blob storage. The issue with this one is triggering an event to process the TIF to tiles for the web.
Why not just directly upload to files to the web server using post? Could have a file storage on the web server. I could trigger an event once the upload is done.
Domain name?
Might store
HTTP / HTTPS
Create time-series graph
Create gauge graph ...
This CORS is causing problems http / https. KISTERS only has http :(
What ts_name should I use?