2020-09-04 22:03:03 +00:00
|
|
|
// current weather conditions display
|
2022-09-05 15:52:30 +00:00
|
|
|
/* globals WeatherDisplay, utils, STATUS, luxon */
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
|
class Radar extends WeatherDisplay {
|
2020-10-29 21:44:28 +00:00
|
|
|
constructor(navId, elemId) {
|
2022-09-05 15:52:30 +00:00
|
|
|
super(navId, elemId, 'Local Radar', true, true);
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// set max images
|
|
|
|
this.dopplerRadarImageMax = 6;
|
2020-09-06 01:01:13 +00:00
|
|
|
// update timing
|
|
|
|
this.timing.baseDelay = 350;
|
2020-09-09 19:29:03 +00:00
|
|
|
this.timing.delay = [
|
2020-10-29 21:44:28 +00:00
|
|
|
{ time: 4, si: 5 },
|
|
|
|
{ time: 1, si: 0 },
|
|
|
|
{ time: 1, si: 1 },
|
|
|
|
{ time: 1, si: 2 },
|
|
|
|
{ time: 1, si: 3 },
|
|
|
|
{ time: 1, si: 4 },
|
|
|
|
{ time: 4, si: 5 },
|
|
|
|
{ time: 1, si: 0 },
|
|
|
|
{ time: 1, si: 1 },
|
|
|
|
{ time: 1, si: 2 },
|
|
|
|
{ time: 1, si: 3 },
|
|
|
|
{ time: 1, si: 4 },
|
|
|
|
{ time: 4, si: 5 },
|
|
|
|
{ time: 1, si: 0 },
|
|
|
|
{ time: 1, si: 1 },
|
|
|
|
{ time: 1, si: 2 },
|
|
|
|
{ time: 1, si: 3 },
|
|
|
|
{ time: 1, si: 4 },
|
|
|
|
{ time: 12, si: 5 },
|
2020-09-09 19:29:03 +00:00
|
|
|
];
|
2020-09-04 22:03:03 +00:00
|
|
|
}
|
|
|
|
|
2022-03-01 22:19:08 +00:00
|
|
|
async getData(_weatherParameters) {
|
|
|
|
super.getData(_weatherParameters);
|
|
|
|
const weatherParameters = _weatherParameters ?? this.weatherParameters;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2020-12-29 16:22:20 +00:00
|
|
|
// ALASKA AND HAWAII AREN'T SUPPORTED!
|
|
|
|
if (weatherParameters.state === 'AK' || weatherParameters.state === 'HI') {
|
2020-09-04 22:03:03 +00:00
|
|
|
this.setStatus(STATUS.noData);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-08 21:50:53 +00:00
|
|
|
// date and time parsing
|
2020-10-29 21:44:28 +00:00
|
|
|
const { DateTime } = luxon;
|
2020-09-08 21:50:53 +00:00
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
// get the base map
|
|
|
|
let src = 'images/4000RadarMap2.jpg';
|
2020-12-29 16:22:20 +00:00
|
|
|
if (weatherParameters.State === 'HI') src = 'images/HawaiiRadarMap2.png';
|
2020-09-04 22:03:03 +00:00
|
|
|
this.baseMap = await utils.image.load(src);
|
|
|
|
|
2020-12-29 16:22:20 +00:00
|
|
|
const baseUrl = 'https://mesonet.agron.iastate.edu/archive/data/';
|
2020-12-29 21:26:58 +00:00
|
|
|
const baseUrlEnd = '/GIS/uscomp/';
|
2020-12-29 16:22:20 +00:00
|
|
|
const baseUrls = [];
|
|
|
|
let date = DateTime.utc().minus({ days: 1 }).startOf('day');
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
// make urls for yesterday and today
|
|
|
|
while (date <= DateTime.utc().startOf('day')) {
|
2020-12-29 16:22:20 +00:00
|
|
|
baseUrls.push(`${baseUrl}${date.toFormat('yyyy/LL/dd')}${baseUrlEnd}`);
|
|
|
|
date = date.plus({ days: 1 });
|
2020-09-04 22:03:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 16:22:20 +00:00
|
|
|
const lists = (await Promise.all(baseUrls.map(async (url) => {
|
|
|
|
try {
|
|
|
|
// get a list of available radars
|
|
|
|
const radarHtml = await utils.fetch.text(url, { cors: true });
|
|
|
|
return radarHtml;
|
|
|
|
} catch (e) {
|
|
|
|
console.log('Unable to get list of radars');
|
|
|
|
console.error(e);
|
|
|
|
this.setStatus(STATUS.failed);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}))).filter((d) => d);
|
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
// convert to an array of gif urls
|
2020-12-29 16:22:20 +00:00
|
|
|
const pngs = lists.map((html, htmlIdx) => {
|
|
|
|
const parser = new DOMParser();
|
|
|
|
const xmlDoc = parser.parseFromString(html, 'text/html');
|
|
|
|
// add the base url
|
|
|
|
const base = xmlDoc.createElement('base');
|
|
|
|
base.href = baseUrls[htmlIdx];
|
|
|
|
xmlDoc.head.append(base);
|
|
|
|
const anchors = xmlDoc.getElementsByTagName('a');
|
2020-12-29 21:26:58 +00:00
|
|
|
const urls = [];
|
|
|
|
Array.from(anchors).forEach((elem) => {
|
|
|
|
if (elem.innerHTML?.includes('.png') && elem.innerHTML?.includes('n0r_')) {
|
|
|
|
urls.push(elem.href);
|
2020-12-29 16:22:20 +00:00
|
|
|
}
|
2020-12-29 21:26:58 +00:00
|
|
|
});
|
|
|
|
return urls;
|
2020-12-29 16:22:20 +00:00
|
|
|
}).flat();
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// get the last few images
|
2020-12-29 21:26:58 +00:00
|
|
|
const sortedPngs = pngs.sort((a, b) => (Date(a) < Date(b) ? -1 : 1));
|
|
|
|
const urls = sortedPngs.slice(-(this.dopplerRadarImageMax));
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// calculate offsets and sizes
|
|
|
|
let offsetX = 120;
|
|
|
|
let offsetY = 69;
|
2020-12-29 21:26:58 +00:00
|
|
|
const width = 2550;
|
|
|
|
const height = 1600;
|
|
|
|
offsetX *= 2;
|
|
|
|
offsetY *= 2;
|
|
|
|
const sourceXY = Radar.getXYFromLatitudeLongitudeMap(weatherParameters, offsetX, offsetY);
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// create working context for manipulation
|
|
|
|
const workingCanvas = document.createElement('canvas');
|
|
|
|
workingCanvas.width = width;
|
|
|
|
workingCanvas.height = height;
|
|
|
|
const workingContext = workingCanvas.getContext('2d');
|
|
|
|
workingContext.imageSmoothingEnabled = false;
|
|
|
|
|
|
|
|
// calculate radar offsets
|
2020-12-29 21:26:58 +00:00
|
|
|
const radarOffsetX = 120;
|
|
|
|
const radarOffsetY = 70;
|
|
|
|
const radarSourceXY = Radar.getXYFromLatitudeLongitudeDoppler(weatherParameters, offsetX, offsetY);
|
|
|
|
const radarSourceX = radarSourceXY.x / 2;
|
|
|
|
const radarSourceY = radarSourceXY.y / 2;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// Load the most recent doppler radar images.
|
2020-09-09 01:07:09 +00:00
|
|
|
const radarInfo = await Promise.all(urls.map(async (url) => {
|
2020-09-04 22:03:03 +00:00
|
|
|
// create destination context
|
|
|
|
const canvas = document.createElement('canvas');
|
|
|
|
canvas.width = 640;
|
|
|
|
canvas.height = 367;
|
|
|
|
const context = canvas.getContext('2d');
|
|
|
|
context.imageSmoothingEnabled = false;
|
|
|
|
|
|
|
|
// get the image
|
2020-12-29 21:26:58 +00:00
|
|
|
const response = await fetch(utils.cors.rewriteUrl(url));
|
2020-10-02 02:35:49 +00:00
|
|
|
|
|
|
|
// test response
|
|
|
|
if (!response.ok) throw new Error(`Unable to fetch radar error ${response.status} ${response.statusText} from ${response.url}`);
|
|
|
|
|
|
|
|
// get the blob
|
|
|
|
const blob = await response.blob();
|
2020-09-09 01:07:09 +00:00
|
|
|
|
|
|
|
// store the time
|
2020-12-29 21:26:58 +00:00
|
|
|
const timeMatch = url.match(/_(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)\./);
|
2020-09-09 01:07:09 +00:00
|
|
|
let time;
|
|
|
|
if (timeMatch) {
|
|
|
|
const [, year, month, day, hour, minute] = timeMatch;
|
|
|
|
time = DateTime.fromObject({
|
|
|
|
year,
|
|
|
|
month,
|
|
|
|
day,
|
|
|
|
hour,
|
|
|
|
minute,
|
2022-03-01 21:54:19 +00:00
|
|
|
}, {
|
2020-09-09 01:07:09 +00:00
|
|
|
zone: 'UTC',
|
2022-03-01 22:19:08 +00:00
|
|
|
}).setZone();
|
2020-09-09 01:07:09 +00:00
|
|
|
} else {
|
2020-10-02 02:35:49 +00:00
|
|
|
time = DateTime.fromHTTP(response.headers.get('last-modified')).setZone();
|
2020-09-09 01:07:09 +00:00
|
|
|
}
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// assign to an html image element
|
|
|
|
const imgBlob = await utils.image.load(blob);
|
|
|
|
|
|
|
|
// draw the entire image
|
2020-12-29 21:26:58 +00:00
|
|
|
workingContext.clearRect(0, 0, width, 1600);
|
|
|
|
workingContext.drawImage(imgBlob, 0, 0, width, 1600);
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// get the base map
|
2020-10-29 21:44:28 +00:00
|
|
|
context.drawImage(await this.baseMap, sourceXY.x, sourceXY.y, offsetX * 2, offsetY * 2, 0, 0, 640, 367);
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2020-09-08 03:06:44 +00:00
|
|
|
// crop the radar image
|
|
|
|
const cropCanvas = document.createElement('canvas');
|
|
|
|
cropCanvas.width = 640;
|
|
|
|
cropCanvas.height = 367;
|
|
|
|
const cropContext = cropCanvas.getContext('2d');
|
|
|
|
cropContext.imageSmoothingEnabled = false;
|
|
|
|
cropContext.drawImage(workingCanvas, radarSourceX, radarSourceY, (radarOffsetX * 2), (radarOffsetY * 2.33), 0, 0, 640, 367);
|
2020-09-08 15:05:46 +00:00
|
|
|
// clean the image
|
2020-12-29 21:26:58 +00:00
|
|
|
Radar.removeDopplerRadarImageNoise(cropContext);
|
2020-09-08 03:06:44 +00:00
|
|
|
|
|
|
|
// merge the radar and map
|
2020-12-29 21:26:58 +00:00
|
|
|
Radar.mergeDopplerRadarImage(context, cropContext);
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2022-08-05 21:23:22 +00:00
|
|
|
const elem = this.fillTemplate('frame', { map: { type: 'img', src: canvas.toDataURL() } });
|
|
|
|
|
2020-09-09 01:07:09 +00:00
|
|
|
return {
|
|
|
|
canvas,
|
|
|
|
time,
|
2022-08-05 21:23:22 +00:00
|
|
|
elem,
|
2020-09-09 01:07:09 +00:00
|
|
|
};
|
2020-09-04 22:03:03 +00:00
|
|
|
}));
|
2022-08-05 21:23:22 +00:00
|
|
|
|
|
|
|
// put the elements in the container
|
|
|
|
const scrollArea = this.elem.querySelector('.scroll-area');
|
|
|
|
scrollArea.innerHTML = '';
|
|
|
|
scrollArea.append(...radarInfo.map((r) => r.elem));
|
|
|
|
|
2020-09-06 01:01:13 +00:00
|
|
|
// set max length
|
2020-09-09 01:07:09 +00:00
|
|
|
this.timing.totalScreens = radarInfo.length;
|
2020-09-06 01:01:13 +00:00
|
|
|
// store the images
|
2020-10-29 21:44:28 +00:00
|
|
|
this.data = radarInfo.map((radar) => radar.canvas);
|
2020-09-09 19:29:03 +00:00
|
|
|
|
2020-10-29 21:44:28 +00:00
|
|
|
this.times = radarInfo.map((radar) => radar.time);
|
2020-09-09 20:23:19 +00:00
|
|
|
this.setStatus(STATUS.loaded);
|
2020-09-04 22:03:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-06 01:01:13 +00:00
|
|
|
async drawCanvas() {
|
2020-09-04 22:03:03 +00:00
|
|
|
super.drawCanvas();
|
2020-10-29 21:44:28 +00:00
|
|
|
const { DateTime } = luxon;
|
2022-09-05 15:52:30 +00:00
|
|
|
const time = this.times[this.screenIndex].toLocaleString(DateTime.TIME_SIMPLE);
|
|
|
|
const timePadded = time.length >= 8 ? time : ` ${time}`;
|
|
|
|
this.elem.querySelector('.header .right .time').innerHTML = timePadded;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2022-08-05 21:23:22 +00:00
|
|
|
// scroll to image
|
|
|
|
this.elem.querySelector('.scroll-area').style.top = `${-this.screenIndex * 371}px`;
|
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
this.finishDraw();
|
|
|
|
}
|
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
static getXYFromLatitudeLongitudeMap(pos, offsetX, offsetY) {
|
2020-09-04 22:03:03 +00:00
|
|
|
let y = 0;
|
|
|
|
let x = 0;
|
2020-12-29 21:26:58 +00:00
|
|
|
const imgHeight = 3200;
|
|
|
|
const imgWidth = 5100;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
y = (51.75 - pos.latitude) * 55.2;
|
|
|
|
// center map
|
|
|
|
y -= offsetY;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// Do not allow the map to exceed the max/min coordinates.
|
2020-12-29 21:26:58 +00:00
|
|
|
if (y > (imgHeight - (offsetY * 2))) {
|
|
|
|
y = imgHeight - (offsetY * 2);
|
2020-09-04 22:03:03 +00:00
|
|
|
} else if (y < 0) {
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
x = ((-130.37 - pos.longitude) * 41.775) * -1;
|
|
|
|
// center map
|
|
|
|
x -= offsetX;
|
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
// Do not allow the map to exceed the max/min coordinates.
|
2020-12-29 21:26:58 +00:00
|
|
|
if (x > (imgWidth - (offsetX * 2))) {
|
|
|
|
x = imgWidth - (offsetX * 2);
|
2020-09-04 22:03:03 +00:00
|
|
|
} else if (x < 0) {
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
return { x: x * 2, y: y * 2 };
|
2020-09-04 22:03:03 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 21:26:58 +00:00
|
|
|
static getXYFromLatitudeLongitudeDoppler(pos, offsetX, offsetY) {
|
2020-09-04 22:03:03 +00:00
|
|
|
let y = 0;
|
|
|
|
let x = 0;
|
2020-12-29 16:22:20 +00:00
|
|
|
const imgHeight = 6000;
|
|
|
|
const imgWidth = 2800;
|
|
|
|
|
|
|
|
y = (51 - pos.latitude) * 61.4481;
|
|
|
|
// center map
|
|
|
|
y -= offsetY;
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// Do not allow the map to exceed the max/min coordinates.
|
2020-12-29 16:22:20 +00:00
|
|
|
if (y > (imgHeight - (offsetY * 2))) {
|
|
|
|
y = imgHeight - (offsetY * 2);
|
2020-09-04 22:03:03 +00:00
|
|
|
} else if (y < 0) {
|
|
|
|
y = 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 16:22:20 +00:00
|
|
|
x = ((-129.138 - pos.longitude) * 42.1768) * -1;
|
|
|
|
// center map
|
|
|
|
x -= offsetX;
|
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
// Do not allow the map to exceed the max/min coordinates.
|
2020-12-29 16:22:20 +00:00
|
|
|
if (x > (imgWidth - (offsetX * 2))) {
|
|
|
|
x = imgWidth - (offsetX * 2);
|
2020-09-04 22:03:03 +00:00
|
|
|
} else if (x < 0) {
|
|
|
|
x = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return { x: x * 2, y: y * 2 };
|
|
|
|
}
|
|
|
|
|
2020-10-29 21:44:28 +00:00
|
|
|
static removeDopplerRadarImageNoise(RadarContext) {
|
2020-09-04 22:03:03 +00:00
|
|
|
const RadarImageData = RadarContext.getImageData(0, 0, RadarContext.canvas.width, RadarContext.canvas.height);
|
|
|
|
|
|
|
|
// examine every pixel,
|
|
|
|
// change any old rgb to the new-rgb
|
|
|
|
for (let i = 0; i < RadarImageData.data.length; i += 4) {
|
|
|
|
// i + 0 = red
|
|
|
|
// i + 1 = green
|
|
|
|
// i + 2 = blue
|
|
|
|
// i + 3 = alpha (0 = transparent, 255 = opaque)
|
2020-12-29 21:26:58 +00:00
|
|
|
let R = RadarImageData.data[i];
|
|
|
|
let G = RadarImageData.data[i + 1];
|
|
|
|
let B = RadarImageData.data[i + 2];
|
|
|
|
let A = RadarImageData.data[i + 3];
|
2020-09-04 22:03:03 +00:00
|
|
|
|
|
|
|
// is this pixel the old rgb?
|
2020-12-29 21:26:58 +00:00
|
|
|
if ((R === 0 && G === 0 && B === 0)
|
|
|
|
|| (R === 0 && G === 236 && B === 236)
|
|
|
|
|| (R === 1 && G === 160 && B === 246)
|
|
|
|
|| (R === 0 && G === 0 && B === 246)) {
|
|
|
|
// change to your new rgb
|
|
|
|
|
2020-09-04 22:03:03 +00:00
|
|
|
// Transparent
|
|
|
|
R = 0;
|
|
|
|
G = 0;
|
|
|
|
B = 0;
|
|
|
|
A = 0;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 0 && G === 255 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Light Green 1
|
|
|
|
R = 49;
|
|
|
|
G = 210;
|
|
|
|
B = 22;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 0 && G === 200 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Light Green 2
|
|
|
|
R = 0;
|
|
|
|
G = 142;
|
|
|
|
B = 0;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 0 && G === 144 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Dark Green 1
|
|
|
|
R = 20;
|
|
|
|
G = 90;
|
|
|
|
B = 15;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 255 && G === 255 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Dark Green 2
|
|
|
|
R = 10;
|
|
|
|
G = 40;
|
|
|
|
B = 10;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 231 && G === 192 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Yellow
|
|
|
|
R = 196;
|
|
|
|
G = 179;
|
|
|
|
B = 70;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 255 && G === 144 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Orange
|
|
|
|
R = 190;
|
|
|
|
G = 72;
|
|
|
|
B = 19;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 214 && G === 0 && B === 0)
|
|
|
|
|| (R === 255 && G === 0 && B === 0)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Red
|
|
|
|
R = 171;
|
|
|
|
G = 14;
|
|
|
|
B = 14;
|
|
|
|
A = 255;
|
2020-12-29 21:26:58 +00:00
|
|
|
} else if ((R === 192 && G === 0 && B === 0)
|
|
|
|
|| (R === 255 && G === 0 && B === 255)) {
|
2020-09-04 22:03:03 +00:00
|
|
|
// Brown
|
|
|
|
R = 115;
|
|
|
|
G = 31;
|
|
|
|
B = 4;
|
|
|
|
A = 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
RadarImageData.data[i] = R;
|
|
|
|
RadarImageData.data[i + 1] = G;
|
|
|
|
RadarImageData.data[i + 2] = B;
|
|
|
|
RadarImageData.data[i + 3] = A;
|
|
|
|
}
|
|
|
|
|
|
|
|
RadarContext.putImageData(RadarImageData, 0, 0);
|
2020-12-29 21:26:58 +00:00
|
|
|
|
|
|
|
// MapContext.drawImage(RadarContext.canvas, 0, 0);
|
2020-09-04 22:03:03 +00:00
|
|
|
}
|
2020-09-08 03:06:44 +00:00
|
|
|
|
2020-10-29 21:44:28 +00:00
|
|
|
static mergeDopplerRadarImage(mapContext, radarContext) {
|
|
|
|
const mapImageData = mapContext.getImageData(0, 0, mapContext.canvas.width, mapContext.canvas.height);
|
|
|
|
const radarImageData = radarContext.getImageData(0, 0, radarContext.canvas.width, radarContext.canvas.height);
|
2020-09-08 03:06:44 +00:00
|
|
|
|
|
|
|
// examine every pixel,
|
|
|
|
// change any old rgb to the new-rgb
|
2020-10-29 21:44:28 +00:00
|
|
|
for (let i = 0; i < radarImageData.data.length; i += 4) {
|
2020-09-08 03:06:44 +00:00
|
|
|
// i + 0 = red
|
|
|
|
// i + 1 = green
|
|
|
|
// i + 2 = blue
|
|
|
|
// i + 3 = alpha (0 = transparent, 255 = opaque)
|
|
|
|
|
|
|
|
// is this pixel the old rgb?
|
|
|
|
if ((mapImageData.data[i] < 116 && mapImageData.data[i + 1] < 116 && mapImageData.data[i + 2] < 116)) {
|
|
|
|
// change to your new rgb
|
|
|
|
|
|
|
|
// Transparent
|
|
|
|
radarImageData.data[i] = 0;
|
|
|
|
radarImageData.data[i + 1] = 0;
|
|
|
|
radarImageData.data[i + 2] = 0;
|
|
|
|
radarImageData.data[i + 3] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
radarContext.putImageData(radarImageData, 0, 0);
|
|
|
|
|
|
|
|
mapContext.drawImage(radarContext.canvas, 0, 0);
|
|
|
|
}
|
2020-10-29 21:44:28 +00:00
|
|
|
}
|