[GIS] Changing color scale in KML files

colorcolor rampcolormapgoogle-maps-apikml

I want to work with kml/kmz files in the Google Maps API, but I want to remap the color scales.

Is that possible?

Here are example kml/kmz files where I'd like to change the color representation of the data, but I don't see any method to do so. I can see them fine using Google Earth or the Google Maps API.

Best Answer

The three KMLs you linked to all use image overlays to display the data, so the colors are built into an image file that they are laying on the map. One way to re-color them would be to try and extract the image(s) from the KML file, and re-color in some image editing software. But the better way to do it is probably to try and find the source data, re-style it in your GIS software (QGIS, ArcGIS, etc.), and export your own KML/KMZ.

Related Question