I have a series of large data sets going upto a gigabyte size. These datasets have a X value, Y value, and a Z value.
The X and Y are coordinate locations and Z is the depth values associated with those locations.
I want to sample each of the Y value at every 50 feet interval based on the X values.
For example my data set is like this:
X Y Z
100 150 1.1
120 250 1.2
100 155 1.1
100 200 1.5
100 250 1.3
120 260 1.4
120 300 1.2
.
.
ETC.
.
My final data sets should be like, after sampling every 50 feet:
X Y Z
100 150 1.1
100 200 1.5
120 250 1.2
120 300 1.2
.
.
etc.
.
.
Thanks for any help.
The X and Y are coordinate locations and Z is the depth values associated with those locations.
I want to sample each of the Y value at every 50 feet interval based on the X values.
For example my data set is like this:
X Y Z
100 150 1.1
120 250 1.2
100 155 1.1
100 200 1.5
100 250 1.3
120 260 1.4
120 300 1.2
.
.
ETC.
.
My final data sets should be like, after sampling every 50 feet:
X Y Z
100 150 1.1
100 200 1.5
120 250 1.2
120 300 1.2
.
.
etc.
.
.
Thanks for any help.