NavigationUser login |
Experiments with Yolo County Groundwater DataSubmitted by dylan on Tue, 2005-08-09 18:08.
The California Department of Water Resources provides public access to their groundwater level and quality databases here. Point data (well locations) associated with groundwater levels can be downloaded in the form of a text file, which can then be input into the GIS/mapping application of choice. Simple UNIX text programs were used to extract geographic coordinates and groundwater level, and imported into GRASS GIS with the command v.in.ascii. Pre-computer groundwater contours can also me downloaded from the Water Resources webpage. # 1. re-project source DEM data to UTM z10 gdalwarp -t_srs '+proj=utm +zone=10 +datum=NAD83' \ -s_srs '+proj=aea +x_0=0.0 +y_0=-4000000 +lon_0=-120.0 +lat_0=0.0 +lat_1=34.0 +lat_2=40.5 \ +datum=NAD83' 38121/hdr.adf elev.tif # 2. import dem into GRASS with r.in.gdal # 3. input Dept. Water Resources data into GRASS v.in.ascii in=wells.txt out=wells2 columns='x double precision, y double precision, GSWS double precision' # 4. interpolate surface with RST v.surf.rst in=wells2 zcol=GSWS elev=gsws Figure 1 illustrates an example of an interpolated groundwater surface in Yolo County. Interpolation was done in GRASS-6.1, using the RST (regularized splines with tension) method (see references 1 and 2). Figures 2 and 3 are examples of 3D visualization of groundwater surface, groundwater contours, and local elevation data with the GRASS add-on, NVIZ. Other grographic data used in this example (30 DEM and Yolo County outline) were downloaded from ca.gis.gov. The DEM data was re-projected from the Teal Albers coordinate system to UTM zone 10 with the open source tool gdalwarp (part of the GDAL/OGR geospatial data processing tools available here). Note that the 30 meter elevation products distributed on gis.ca.gov are in the ARC/INFO binary grid format. ( categories: )
|