I have multiple KMZ files created with gdal_translate using geoTiffs as inputs. The individual KMZ files all open and display correctly in Google Earth but I would like to group the KMZ files into another KMZ file for better organization. I have tried JasonM1's suggestion in the "Nesting KMZ file" thread but the images do not get displayed. Google Earth reads the parent KMZ file and flys to the correct location but no overlay is displayed. How do I load the images? The top level doc.kml file is shown below. Thanks!
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<NetworkLink>
<open>1</open>
<refreshVisibility>1</refreshVisibility>
<flyToView>1</flyToView>
<Link>
<href>out_1.kmz</href>
</Link>
</NetworkLink>
<NetworkLink>
<Link>
<href>out_2.kmz</href>
</Link>
</NetworkLink>
<NetworkLink>
<Link>
<href>out_3.kmz</href>
</Link>
</NetworkLink>
</Document>
</kml>