This file contains hidden or 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
| # Day 26: Transport - US Electric Power Transmission Lines | |
| # Visualizing America's invisible highway: 700,000+ miles of power lines | |
| # Dynamic line widths by voltage class, glowing effect for the energy flow | |
| library(mapgl) | |
| library(sf) | |
| library(dplyr) | |
| # Load transmission lines from HIFLD (Homeland Infrastructure Foundation-Level Data) | |
| # This is a large dataset - we'll use direct URL for the GeoJSON |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| #include <PubSubClient.h> | |
| #include <ESP8266WiFi.h> | |
| const char* ssid = "................."; | |
| const char* password = "................"; | |
| char* topic = "esp8266_arduino_out"; | |
| char* server = "iot.eclipse.org"; | |
This file contains hidden or 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
| grid.collection.on("backgrid:editing", function(e){ | |
| alert('editando..'); | |
| }); | |
| grid.collection.on("backgrid:selected", function (model, selected) { | |
| alert('hola'); | |
| }); |