* Deprecate `rio_tiler.io.GCPCOGReader` and allow GPCS dataset to be opened by `rio_tiler.io.COGReader`
python
before
with GCPCOGReader("my.tif") as cog:
...
now, COGReader will find the gcps and create an internal WarpedVRT using the gpcs and crs
with COGReader("my.tif") as cog:
...
* add `ImageData.rescale` to rescale the array in place
* add `ImageData.apply_color_formula` to apply color formula in place