Tagged Questions
2
votes
0answers
72 views
How to interpolate GPS data correctly?
I'm working on a project that involves using linear interpolation to fit lines to
lat/lng points. I'm pretty new at scientific programming related stuff, and I was wondering if people could steer me ...
5
votes
1answer
128 views
ModelBuilder: How to extract data by date, export to separate tables and interpolate tables to rasters
I've been using ArcGIS for a couple years, but when it comes to model builder I've only worked with very simple models. I'm hoping someone that is much smarter than myself can help me in building a ...
3
votes
1answer
188 views
Interpolating Maps - Statistical Learning Techniques vs Spatial Statistics Techniques
I have recently begun experimenting with the inteprolation of variales over a whole country.
I have good sized training set where I have several dependant variables (continuous and categorical) ...
4
votes
1answer
152 views
How to interpolate polyline or line from points?
We have a lot of points, but with no timestamps to create ways. For now, I've created a sample of the way the points traverse. It's in here, this way can be compared with a Google one.
I haven't ...
6
votes
2answers
733 views
Creating geodatabase from CSV using python
I have a file with weather data (daily) for multiple weather stations for multiple years. I am looking for some python script to automate the database creation process and its interpolation on a daily ...
3
votes
1answer
250 views
Spatial Interpolation Methods like PRISM
I am looking for some kind of software (free software) that allows me to make an interpolation like PRISM software.
The interpolation used in PRISM is a
local regression and accounts for ...
12
votes
2answers
1k views
How to smooth/interpolate a raster in python using GDAL?
This is my first post so please feel free to critique where necessary.
Background:
I am developing in Python and using GDAL from OSGEO to manipulate and interact with rasters and shapefiles.
...
3
votes
1answer
429 views
Interpolate undulations for given points using a geoid model
I have two databases, the first one (F.tsj) contains gps points: coordinates and ellipsoid heights and the second one is simply a geoid model where every line stores latitude, longitude, and ...
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 = ...