add additional_cog_metadata options in cog_translate to allow the user to add more dataset metadatas
cog_translate("boring.tif", "cogeo.tif", deflate_profile, additional_cog_metadata={"comments": "I made this tiff with rio-cogeo"})
with rasterio.open("cogeo.tif") as cog:
print(cog.tags()["comment"])
>>> "I made this tiff with rio-cogeo"
This PR does
cog_translate
to allow a user to set or update a colormapcog_translate
to allow the user to add more dataset metadatas