I want to do crop classification using deep learning methods. I have collected the dataset of crop types in Ghana. My dataset contains tiff images and json files. The tiff file is not georeferenced. The json file looks like this:
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2,8],[1,8],[1,11],[-2,11],[-2,8]]]},"properties":{"anon:size":3,"anon:warning":"WARNING: The item geometries in this collection have been anonymized such that they exist somewhere within the bounding box listed within that item's geometry.","datetime":"2017-01-02T00:00:00","id":"su_african_crops_ghana_source_planet_000000_2017_01_02"}}
]}```
How to make the tiff image georeferenced using this json file for my deep learning project. I want to do pixel-wise classification. Can anyone help to make the tiff image georeferenced? Is there any way to do it in python?
Thank you.