Tagged Questions
2
votes
3answers
202 views
Get the LatLon of middle points of a road segment?
Suppose I have the LatLon of the two end points as well as a small number of middle points of a road segment.
What is the best way to calculate the LatLon of a middle point P of the road segment ...
7
votes
2answers
174 views
How to handle interpolation of multiple (quality) tiers of irregular data?
I'm going to try to provide a high level overview of the issue - realizing that more details/info will be necessary - but I don't want to write a novel that seems too overwhelming for people to ...
8
votes
3answers
3k views
Bilinear interpolation of point data on a raster in Python?
I have a raster that I'd like to do some point interpolations with. Here is where I'm at:
from osgeo import gdal
from numpy import array
# Read raster
source = gdal.Open('my_raster.tif')
nx, ny = ...