Q1. Write short notes on the following:
- (a)) Reading and visualising raster data in GEE (300 words)
- (b)) Image classification in GEE (300 words)
- Raster data in GEE is accessed as `ee.Image` or `ee.ImageCollection` objects from the data catalog.
- Visualization uses `Map.addLayer()` with `visParams` to define bands, min/max values, and palettes.
- True-color composites use Red, Green, Blue bands; false-color uses infrared or other bands.
- Image classification assigns land cover classes to pixels using spectral information.
Answer: