plot gebco data in python basemap

后端 未结 1 791
独厮守ぢ
独厮守ぢ 2021-01-03 15:22

I have downloaded some gebco bathymetry data as a netCDF file. I would like to plot it with python-basemap. I have tried,

import netCDF4
from mpl_toolkits.ba         


        
相关标签:
1条回答
  • 2021-01-03 15:53

    so just for the record, here's the answer that works, using the comments above:

    import netCDF4
    from mpl_toolkits.basemap import Basemap
    
    # Load data
    dataset = netCDF4.Dataset('/usgs/data1/rsignell/bathy/gebco_08_-30_-45_5_65.nc')
    
    # Extract variables
    x = dataset.variables['x_range']
    y = dataset.variables['y_range']
    spacing = dataset.variables['spacing']
    
    # Compute Lat/Lon
    nx = (x[-1]-x[0])/spacing[0]   # num pts in x-dir
    ny = (y[-1]-y[0])/spacing[1]   # num pts in y-dir
    
    lon = np.linspace(x[0],x[-1],nx)
    lat = np.linspace(y[0],y[-1],ny)
    
    # Reshape data
    zz = dataset.variables['z']
    Z = zz[:].reshape(ny, nx)
    
    # setup basemap.
    m = Basemap(llcrnrlon=-30,llcrnrlat=45.0,urcrnrlon=5.0,urcrnrlat=65.0,
                resolution='i',projection='stere',lon_0=-15.0,lat_0=55.0)
    
    x,y = m(*np.meshgrid(lon,lat))
    
    m.contourf(x, y, flipud(Z));
    m.fillcontinents(color='grey');
    m.drawparallels(np.arange(10,70,10), labels=[1,0,0,0]);
    m.drawmeridians(np.arange(-80, 5, 10), labels=[0,0,0,1]);
    

    which produces this plot.enter image description here

    0 讨论(0)
提交回复
热议问题