I’m very new to GRASS and an experienced programmer.
My goal is to import isolines (elevation lines) as well as elevation points from another mapping program into GRASS and then interpolate a raster based on the vector data and then export as a DEM file.
there are points outside specified 2D/3D region--ignored 6 points
ERROR2: zero points in the given region!
ERROR: Input failed
Keeping in mind I’m completely new to GRASS (and don’t understand a
lot of the jargon), can you explain what I’m doing wrong?
Probably, you aren't defining the working "region". See command
g.region.
Example: g.region -a vect=secondTry@PERMANENT res=10 -p
This command will define the working region by the spatial extent of
"secondTry", defining and aligning a 10 meters resolution with the
region extent and printing the result.
Also, can you recommend a tutorial that covers this type of conversion
oriented toward beginners?
I strongly suggest the book OPEN SOURCE GIS - A GRASS GIS Approach, 3rd
edition.
I’m very new to GRASS and an experienced programmer.
My goal is to import isolines (elevation lines) as well as elevation points from another mapping program into GRASS and then interpolate a raster based on the vector data and then export as a DEM file.
My real source data is defined as a combination of points (which I can now import) and 2D splines (representing the isolines) that may or may not form a closed shape, like this:
|2D Smooth Polygon:
| Height 2885
| smoothing method: Cubic B-Spline
| node 1 at 564.51807,742.19873
| node 2 at 249.51805,570.15057
| node 3 at 578.43365,137.50000
| node 4 at 919.99994,451.23495
| node 5 at 708.73486,742.19879
| node 6 at 541.74695,727.01807
I can easily reformat the data.
How do I import a spline like this into GRASS in preparation for v.surf.rst (or other vector to raster methods)?