1I have a .csv file contains a few columns: lon, lat, var1, var2 ...
df = pd.read_csv('D:/file.csv')
gdf = gpd.GeoDataFrame(df)
Lon = df['lon']
Lat = df['lat']
Slope = df['slope']
Edit: How can I plot my data in the above table (lon, lat, slope) on a global gridded map with lon (-179.5 degree to 179.5 degree), lat (-89.5 to 89.5 degree) and spatial resolution of 1 degree.
[
]
