I have full disc data in GEOS projection and I would like to save this data into a NetCDF4 file.
As the NetCDF file needs to have basic dimensions of lat, long and time (which can be set to 'None') while creating. Usually, for the subscened images (Mercator projection), I would set it as:
msg8_grp.createDimension('time', None)
msg8_grp.createDimension('lons', len(lon))
msg8_grp.createDimension('lats', len(lat))
Here in this case of goes projection, how do I go about it as there is no lat and long in the data.