I am using following matlab code to apply terrian correction on sentinel1 sar data to get georeferenced backscatter Gamma0 and Sigm0 backscatter bands. I am getteing AmplitudeVH and AmplitudeVV data georeferenced but not Gamma0 and Sigma0 bands. please suggest me how to get them also georeferenced.
% Terrain correction
    disp('Performing terrain correction...');
    [zone, ~, hemi] = getZone(infile);
    if strcmp(hemi, 'S')
        projection = ['EPSG:327', sprintf('%02d', zone)];
    else
        projection = ['EPSG:326', sprintf('%02d', zone)];
    end
    if ~isempty(extDEM)
        demOption = sprintf(' -PdemName="External DEM" -PexternalDEMFile="%s" -PexternalDEMNoDataValue=0 ', extDEM);
    else
        demOption = ' -PdemName="SRTM 1Sec HGT" ';
    end
   system(['gpt Terrain-Correction -Ssource=', outputPath, demOption, ' -PmapProjection=', projection, ' -t ', outputPath]);
kuldeep