Image switch to webp, crush remaining png. Drop > 50% of image bytes.

This commit is contained in:
Ian Gulliver
2019-04-24 03:30:01 +00:00
parent 411188f0cb
commit 2e097d8919
20 changed files with 16 additions and 16 deletions

View File

@@ -11,7 +11,7 @@
<p>Today, I got to build a visualization that <a href="http://www.google.com/appserve/fiberrfi">went public</a>:</p>
<p><img src="data:image/png;base64,<!--# include file="images/fiberrfi-map.png.base64" -->" alt=""></p>
<p><img src="data:image/webp;base64,<!--# include file="images/fiberrfi-map.webp.base64" -->" alt=""></p>
<p>We had lots of data from the fiber-to-the-home request-for-information site, and needed a way to visualize it. This is a <a href="http://code.google.com/apis/visualization/documentation/gallery/geomap.html">geo map</a> that uses markers. Unfortunately, the API limits you to 400 points, which wasn't enough, so I (at nmlorg's suggestion) screenshotted the map with 400 points at a time and stitched the results; hacky, but functional. We couldn't have used the direct rendering anyway, as it does one AJAX call to Google Maps to look up each point (we were passing in ZIP codes), so it takes ~10 minutes to render.</p>