python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Reprojection of North Polar Stereographic binary to Lon/Lat grid (rasterio or gdal in python)
Now, I am working on Stage IV dataset (Precipitation dataset in CONUS).
https://data.eol.ucar.edu/dataset/21.093
This is a binary data that shapes (1121 x 881) array and local 4km polar-stereographic...
TBan
Votes: 0
Answers: 1
rasterio.plot.show_hist - How to change / modify x_label, y_label?
By default, rasterio.plot.show_hist(...) sets the histogram title to "Histogram", x_label to "DN" (for Digital Number) and y_label to "Frequency". There is a parameter fo...
Claude COULOMBE
Votes: 0
Answers: 2
Rasterio: writing tiff with cmap on float values
I have this very simple code:
import numpy as np
from rasterio.transform import Affine
nx = 5
maxx = 4.0
minx = -4.0
res = (maxx - minx) / nx
maxy = 3.0
miny = -3.0
ny = int((maxy - miny) / res)
x =...

Vincent Bénet
Votes: 0
Answers: 1