Estimating new data points based on existing spatial observations

learn more… | top users | synonyms

0
votes
1answer
63 views

re-project SGDF with 5 km*5km resolution to 0.05*0.05

Forgive me for me being naive. I am having trouble with re-projecting SGDF. I have an xyz (x=longitude, y=latitude, z=value) 3-column dataset. Longitude and Latitude values are coordinates in ...
1
vote
1answer
50 views

Issue with cross-validation using the automap package

I want to do a cross-validation for the ca20-Dataset from the geoR package. With for example the meuse-dataset, this works fine, but for this dataset, I encounter a ...
0
votes
1answer
46 views

plotting issue with autofitVariogram in automap

I am a newbie in R. I am using autofitVariogram to daily rainfall data of 50 stations.The sample data is provided below.Some of stations have missing values represented by "NaN" values. My question ...
1
vote
1answer
314 views

How to make Ordinary Kriging by using gstat predict

I am trying to write a code in R that use gstat library in order to create an interpolation. I have already read the gstat manual and based on some examples on internet I had managed to write this ...
3
votes
1answer
250 views

Expanding my interpolation grid for kriging in R

I want to create an interpolation grid consisting of spatial data points to later use for kriging in R. I have been working in the sp and gstat packages. The code I am working with works, but my grid ...
0
votes
1answer
276 views

autokrige and proj4string

I am using the R function autokrige from automap package, but I got an error and I do not know how to solve it. Do you have any hints? Thank you! sp.poidf <- ...
2
votes
0answers
265 views

grid point interpolation of wrf data to lat lon in python with numpy and scipy

Im new to python and I'm trying to write a function that will take a numpy array from a netcdf file with dimensions [time,height,longitude,latitude] and interpolate the function to a specified lat and ...
1
vote
1answer
59 views

What are my options when I want to find a good interpolation for a coordinate in an irregular grid of values?

I have a list points and their values that cover an area like so: #x, y, value list = [ (1.123, 1.232, 15), (1.121, 2.323, 12), (1.124, 3.451, 17), (1.120, 4.593, 06), (1.121, 5.638, 09), (2.123, ...
-1
votes
2answers
530 views

How I can do Spline Interpolation in R

I am a newbie in R and trying to do interpolation in R(sorry if it seems a lame question) . I have some Points(Lat,Lan and one integer value for each point) that I need to interpolate them. I am a ...
0
votes
1answer
556 views

Create colour Grid over map in R

I have been trying to create a grid over my world map in such a way as shown below example of gridded map I want to be able to colour the grid based on the rate2 column in my file. Most of the ...
5
votes
3answers
652 views

How can I interpolate georeferenced data in python?

I have many lines of georeferenced hydrological data with weekly resolution: Station name, Lat, Long, Week 1 average, Week 2 average ... Week 52 average Unfortunately, I also have some data with ...
2
votes
3answers
923 views

Matlab: Define function as interpolation of x,y data

I have 2 columns of x y data in data.txt like this: 0 0 1 1 2 4 3 9 4 16 5 25 Now I want to define a function f(x) where x is the first column and f(x) is the second column, and then be able ...
3
votes
1answer
215 views

Autokriging spatial data

I'm trying to use a kriging function to create vertical maps of chemical parameters in an ocean transect, and I'm having a hard time getting started. My data look like this: horiz=rep(1:5, 5) ...
1
vote
1answer
106 views

Method for interpolating value at the midpoint of a square, given the values, first and second derivatives at the corners?

All the practical examples of spatial interpolation I've been able to find work by sampling additional surrounding points to estimate the derivatives. But is there a simpler method if the derivatives ...
10
votes
1answer
1k views

Plotting interpolated data on map

I have survey data of species richness that was taken at various sites in the Chesapeake Bay, USA, and I would like to graphically present the data as a "heat map." I have a dataframe of lat/long ...
3
votes
2answers
645 views

Average values of a point dataset to a grid dataset

I am relatively new to ggplot, so please forgive me if some of my problems are really simple or not solvable at all. What I am trying to do is generate a "Heat Map" of a country where the filling of ...
2
votes
1answer
139 views

Spatial data with duplicates and missing points

I am analysing data from an egg survey. Data is available from different points in the North Sea, some stations are recorded double at different dates. The sea should be covered by 0.5 x 0.5 degree ...