Hi,
I am trying to regrid latitude-longitude gridded data onto a polar-stereographic projection for the southern hemisphere which can be saved as a NetCDF.
cs = iris.coord_systems.GeogCS(iris.fileformats.pp.EARTH_RADIUS)
target_proj = iris.coord_systems.Stereographic(-90, 0, false_easting=0.0, false_northing=0.0, true_scale_lat=-71, ellipsoid=cs)
(cube_seaice_U_all_PS,extents) = iris.analysis.cartography.project(cube_seaice_U_all, target_proj, nx=1024, ny=284 )
iris.save(cube_seaice_U_all_PS, '/home/users/japope/BAS_Climate/users/japope/Bootstrap/SeaIce/Winds/cube_seaice_U_all_PS.nc', netcdf_format='NETCDF3_CLASSIC')
Above is the code I run and it will produce a southern hemisphere polar stereographic projection. However, the projection contains latitudes from -89.1 to +70.1, despite only having data for -90 to -45 degrees of latitude. I was wondering if it is possible to set the regridding to only produce data for the southern hemisphere only?
Thanks
James