<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://grasswiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E2%9A%A0%EF%B8%8FHajhouse</id>
	<title>GRASS-Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://grasswiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E2%9A%A0%EF%B8%8FHajhouse"/>
	<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/wiki/Special:Contributions/%E2%9A%A0%EF%B8%8FHajhouse"/>
	<updated>2026-05-26T08:26:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4762</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4762"/>
		<updated>2007-09-26T17:51:21Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: 1/3 arc second = about 10 meters&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the [http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. The highest resolution offered is 1/3 second (= about 10 meters) with coverage of much of the USA. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3 arc second NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. '''Download the datasets you desire''' through the provided web interface. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.'''&lt;br /&gt;
&amp;lt;BR&amp;gt;Pick one DEM to start with. From a GRASS shell:&lt;br /&gt;
: &amp;lt;code&amp;gt;cd 18437824/18437824&amp;lt;/code&amp;gt;  ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. '''Start GRASS''' (or restart) in the new location.&lt;br /&gt;
: &amp;lt;code&amp;gt;grass name_of_your_new_location/PERMANENT&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. If you have more than one DEM archive, import additional files as needed (note the &amp;lt;code&amp;gt;-e&amp;lt;/code&amp;gt; flag, which causes the location's bounds to be extended to accomodate the new data):&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal -e in=w001001.adf out=dem2&amp;lt;/code&amp;gt;&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;br /&gt;
&lt;br /&gt;
==Alternatives to the USGS DEM data==&lt;br /&gt;
Other sources of digital elevation models include:&lt;br /&gt;
* SRTM 90 data in TIFF format from http://srtm.csi.cgiar.org/. These come in 5 degree by 5 degree tiles. Horizontal resolution: 3 arc second (90 m at equator). Coverage: world.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=Cropping_maps&amp;diff=4476</id>
		<title>Cropping maps</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=Cropping_maps&amp;diff=4476"/>
		<updated>2007-07-18T22:15:47Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: new page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cropping maps means taking the contents of one map (the ''source'') and eliminating all data outside of the area you are studying (the ''boundary'') to yield a smaller new map (the ''cropped map''). Techniques differ depending on whether your source is raster or vector and whether your boundary is defined by another map or by coordinates. You especially might want to do this with vectors because GRASS operations always operate on the whole vector map, even features outside of the current region.&lt;br /&gt;
&lt;br /&gt;
'''Vector source map''' and '''vector map as boundary'''. Use &amp;lt;code&amp;gt;v.overlay operator=and&amp;lt;/code&amp;gt;. Example: you have a map of roads of the USA and you want a map of only roads in California. Formerly the module &amp;lt;code&amp;gt;v.cutter&amp;lt;/code&amp;gt; did this task; it has however been replaced by &amp;lt;code&amp;gt;v.overlay&amp;lt;/code&amp;gt; in GRASS release 6.&lt;br /&gt;
&lt;br /&gt;
'''Vector source map''' and '''coordinates as boundary'''. Set region to desired coordinates (&amp;lt;code&amp;gt;g.region&amp;lt;/code&amp;gt;), create new vector from region extent to use as boundary using &amp;lt;code&amp;gt;v.in.region&amp;lt;/code&amp;gt;, then &amp;lt;code&amp;gt;v.overlay&amp;lt;/code&amp;gt; as above.&lt;br /&gt;
&lt;br /&gt;
'''Raster source map''' and '''raster map as boundary'''. Make boundary into mask using &amp;lt;code&amp;gt;r.mask&amp;lt;/code&amp;gt; then copy raster source to new map (&amp;lt;code&amp;gt;g.copy&amp;lt;/code&amp;gt;). All cells outside of the mask will be omitted from the new copy. Alternately, use &amp;lt;code&amp;gt;r.mapcalc&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
:r.mapcalc &amp;quot;cropped = if(boundary,raster_source)&amp;quot;&lt;br /&gt;
:r.colors map=cropped rast=source # may be required to transfer the color table&lt;br /&gt;
&lt;br /&gt;
'''Raster source map''' and '''vector boundary'''. Convert the vector to a raster mask (1 where inside, null elsewhere):&lt;br /&gt;
&lt;br /&gt;
:v.to.rast in=vector_boundary out=raster_boundary use=val value=1&lt;br /&gt;
&lt;br /&gt;
Then proceed as above for two rasters.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4472</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4472"/>
		<updated>2007-07-16T16:14:46Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: copyediting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the [http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. The highest resolution offered is 1/3 second (coverage: much of the USA). Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3 arc second NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. '''Download the datasets you desire''' through the provided web interface. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.'''&lt;br /&gt;
&amp;lt;BR&amp;gt;Pick one DEM to start with. From a GRASS shell:&lt;br /&gt;
: &amp;lt;code&amp;gt;cd 18437824/18437824&amp;lt;/code&amp;gt;  ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. '''Start GRASS''' (or restart) in the new location.&lt;br /&gt;
: &amp;lt;code&amp;gt;grass name_of_your_new_location/PERMANENT&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. If you have more than one DEM archive, import additional files as needed (note the &amp;lt;code&amp;gt;-e&amp;lt;/code&amp;gt; flag, which causes the location's bounds to be extended to accomodate the new data):&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal -e in=w001001.adf out=dem2&amp;lt;/code&amp;gt;&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;br /&gt;
&lt;br /&gt;
==Alternatives to the USGS DEM data==&lt;br /&gt;
Other sources of digital elevation models include:&lt;br /&gt;
* SRTM 90 data in TIFF format from http://srtm.csi.cgiar.org/. These come in 5 degree by 5 degree tiles. Horizontal resolution: 3 arc second (90 m at equator). Coverage: world.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=GRASS_Metadata_Management&amp;diff=4226</id>
		<title>GRASS Metadata Management</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=GRASS_Metadata_Management&amp;diff=4226"/>
		<updated>2007-05-26T20:06:33Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: /* Vector */ how to edit comments on vect map&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Metadata support ==&lt;br /&gt;
&lt;br /&gt;
=== Raster ===&lt;br /&gt;
* [http://grass.itc.it/grass63/manuals/html63_user/r.support.html r.support] (r.support history=&amp;quot;long text&amp;quot; now functional, it does line wrapping)&lt;br /&gt;
* [[Replacement_raster_format#Meta-data_support|Metadata support in GRASS raster library notes]]&lt;br /&gt;
&lt;br /&gt;
=== Vector ===&lt;br /&gt;
* [http://mpa.itc.it/markus/grass63progman/Vector_Library.html#head_file_format 'head' file format]&lt;br /&gt;
* TODO: tool to edit this head file needed. In the future this may be provided by &amp;lt;code&amp;gt;v.support&amp;lt;/code&amp;gt; (which has not yet been written). (Reference: http://grass.itc.it/pipermail/grassuser/2007-February/038323.html)&lt;br /&gt;
&lt;br /&gt;
Comments on a vector map can be added manually by editing &amp;lt;code&amp;gt;$MAPSET/vector/$MAPNAME/hist&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Metadata management ideas for future versions of GRASS ==&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [http://www.eurogeographics.org/eng/documents/draftINSPIREMetadataIRv2_20070202.pdf DT Metadata – Draft Implementing Rules for Metadata]&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=Sharing_a_GRASS_database&amp;diff=4211</id>
		<title>Sharing a GRASS database</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=Sharing_a_GRASS_database&amp;diff=4211"/>
		<updated>2007-05-22T18:31:59Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: new article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Sharing a GRASS database ==&lt;br /&gt;
&lt;br /&gt;
Here are some suggestions on how multiple people at a site can collaborate on one GRASS database, sharing data.&lt;br /&gt;
&lt;br /&gt;
===Using the same mapset, sequentially===&lt;br /&gt;
GRASS does not allow two users to run in the same mapset at the same time. It is possible for two different users to take turns using a mapset at different times. This is complicated by the fact that GRASS will not allow itself to be run in a mapset owned by a different operating-system user. If you try to do this, you will get a &amp;quot;permission denied&amp;quot; error, which is entirely independent of the permission checking of your operating system. The solution is either to change the ownership of the mapset (the directory and all files and subdirectories contained therein) prior to a different user running GRASS in that mapset, or to have a separate mapset for each username.&lt;br /&gt;
&lt;br /&gt;
Limitations: possibly inefficient use of users' time because people must take turns.&lt;br /&gt;
&lt;br /&gt;
===Using per-user mapsets===&lt;br /&gt;
If you use a separate mapset for each operating-system username, you can use &amp;lt;code&amp;gt;g.mapsets&amp;lt;/code&amp;gt; to add additional mapsets to the search path,&lt;br /&gt;
which will allow you to access files from either mapset by name without having to use the map@mapset syntax.&lt;br /&gt;
&lt;br /&gt;
Limitations: you still can only use &amp;lt;code&amp;gt;g.remove&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;g.rename&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;g.copy&amp;lt;/code&amp;gt; on maps in your current mapset.&lt;br /&gt;
If you try to replace a map that exists under the the same name in one of the other mapsets, the old map will continue to exist but will be masked for you (but not for other users) by your new map. This behavior may not be what you expect.&lt;br /&gt;
&lt;br /&gt;
===References===&lt;br /&gt;
&lt;br /&gt;
[http://grass.itc.it/pipermail/grassuser/2007-January/037971.html Thread on GRASS-user mailing list on &amp;quot;shared access to mapsets&amp;quot;] (source of the information in this article)&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4210</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4210"/>
		<updated>2007-05-22T18:08:03Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: copyediting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the [http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3&amp;quot; NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. '''Download the datasets you desire.''' They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.'''&lt;br /&gt;
&amp;lt;BR&amp;gt;From a GRASS shell:&lt;br /&gt;
: &amp;lt;code&amp;gt;cd 18437824/18437824&amp;lt;/code&amp;gt;  ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. '''Start GRASS''' (or restart) in the new location.&lt;br /&gt;
: &amp;lt;code&amp;gt;grass name_of_your_new_location/PERMANENT&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
4. Import additional files as needed (note the &amp;lt;code&amp;gt;-e&amp;lt;/code&amp;gt; flag, which causes the location's bounds to be extended to accomodate the new data):&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal -e in=w001001.adf out=dem2&amp;lt;/code&amp;gt;&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4173</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4173"/>
		<updated>2007-05-10T05:27:45Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: r.in.gdal -e flag recommended&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the [http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3&amp;quot; NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. Download the datasets you desire. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.'''&lt;br /&gt;
&amp;lt;BR&amp;gt;From a GRASS shell:&lt;br /&gt;
: &amp;lt;code&amp;gt;cd 18437824/18437824&amp;lt;/code&amp;gt;  ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
3. (re)Start GRASS in the new location.&lt;br /&gt;
&lt;br /&gt;
4. Import additional files as needed (note the &amp;lt;code&amp;gt;-e&amp;lt;/code&amp;gt; flag causing the location's bounds to be extended as needed):&lt;br /&gt;
: &amp;lt;code&amp;gt;r.in.gdal -e in=w001001.adf out=dem2&amp;lt;/code&amp;gt;&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4168</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4168"/>
		<updated>2007-05-09T23:40:13Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the &amp;quot;[http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3&amp;quot; NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. Download the datasets you desire. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.''' From a GRASS shell:&lt;br /&gt;
: cd 18437824/18437824 ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&lt;br /&gt;
3. Start GRASS in the new location.&lt;br /&gt;
4. Import additional files as needed:&lt;br /&gt;
: r.in.gdal in=w001001.adf out=dem2&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4167</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4167"/>
		<updated>2007-05-09T23:38:41Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: /* Importing USGS 1/3&amp;quot; NED datasets into GRASS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the &amp;quot;[http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3&amp;quot; NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
1. Download the datasets you desire. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
2. '''Create a new GRASS location to work with the DEMs.''' From a GRASS shell:&lt;br /&gt;
: cd 18437824/18437824 ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&lt;br /&gt;
3. Start GRASS in the new location.&lt;br /&gt;
4. Import additional files as needed:&lt;br /&gt;
: r.in.gdal in=w001001.adf out=dem2&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
5. Use r.patch to combine the tiles into one continuous map, if desired.&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
	<entry>
		<id>https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4166</id>
		<title>HOWTO import USGS elevation data</title>
		<link rel="alternate" type="text/html" href="https://grasswiki.osgeo.org/w/index.php?title=HOWTO_import_USGS_elevation_data&amp;diff=4166"/>
		<updated>2007-05-09T23:37:53Z</updated>

		<summary type="html">&lt;p&gt;⚠️Hajhouse: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The US Geological Survey offers a variety of digital elevation models through the &amp;quot;[http://seamless.usgs.gov/website/seamless/viewer.php Seamless Distribution System]. Here is an approach to working with them in GRASS.&lt;br /&gt;
&lt;br /&gt;
== Importing USGS 1/3&amp;quot; NED datasets into GRASS ==&lt;br /&gt;
&lt;br /&gt;
# Download the datasets you desire. They will arrive in a zip archive of a directory containing a subdirectory containing a file called w001001.adf, which is the main data file (tip: this is the biggest file).&lt;br /&gt;
# '''Create a new GRASS location to work with the DEMs.''' From a GRASS shell:&lt;br /&gt;
: cd 18437824/18437824 ''(example directory names --- replace with your actual names)''&lt;br /&gt;
: r.in.gdal location=''name_of_your_new_location'' in=w001001.adf out=dem&lt;br /&gt;
# Start GRASS in the new location.&lt;br /&gt;
# Import additional files as needed:&lt;br /&gt;
: r.in.gdal in=w001001.adf out=dem2&lt;br /&gt;
: ''.. etc.''&lt;br /&gt;
# Use r.patch to combine the tiles into one continuous map, if desired.&lt;/div&gt;</summary>
		<author><name>⚠️Hajhouse</name></author>
	</entry>
</feed>