Tips for Arc users: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
No edit summary
 
(60 intermediate revisions by 10 users not shown)
Line 1: Line 1:
''If you wish to use both GRASS GIS and ArcGIS together, this page is for you.''
== Working with your ArcGIS data ==
== Working with your ArcGIS data ==


=== Importing ArcGIS Data ===
GRASS GIS provides converters for importing ESRI shapefiles, e00 files, and many other GIS formats as well. The key GRASS modules for importing vector formats are {{cmd|v.in.ogr}} (for ESRI Shapefiles, MapInfo files, SDTS, TIGER, etc.) and {{cmd|v.in.e00}} for e00 format. For raster data, there is {{cmd|r.in.gdal}}.
=== Coordinate Reference Systems ===
The GRASS data structure requires that each data layer have its CRS exactly defined. This is done by maintaining data layers within a "[[Location and Mapsets|Location]]". Each Location has a strictly defined projection, and datum, and all the data layers (raster and vector) within that location should already be either created in or projected to that CRS. GRASS does '''not''' do "on-the-fly" reprojection to avoid often encountered in other GIS software with datum mismatches. Consequently, data layers in one location are not visible from other locations. However, GRASS does supply a collection of [[Common_Tasks#GIS_Tasks|tools]] for projecting vector and raster layers from one location to another. Use of these tools is explained in the {{cmd|projectionintro|manual}}.
=== Vector import/export ===
* {{cmd|v.in.ogr}} - Convert [http://www.gdal.org/ogr OGR] supported vector formats to GRASS vector format.
* {{cmd|v.out.ogr}} - Convert from the GRASS vector format to one of the supported OGR vector formats.
* {{cmd|v.in.e00}} - Import a E00 coverage into a GRASS vector map.
==== Import of Shapefiles into GRASS ====
specify the directory
v.in.ogr dsn=/home/data/navigation_files output=Tracklines layer=Ship_Tracklines
: or just the .shp file name directly
v.in.ogr dsn=Ship_Tracklines.shp output=Tracklines
This is the syntax for {{cmd|v.in.ogr}} in its most basic form. The ''dsn'' parameter corresponds to the directory path of the vector you are trying to import. You can enter a full or relative path. The ''output'' paramter, aptly enough, is the name of your output Grass vector. The ''layer'' parameter is the name of the input vector, be it shapefile, MapInfo file, or what have you.
==== Export of Shapefiles from GRASS ====
<!--Tom Russo wrote on the grass-user list ... -->
Shapefiles can only hold one type of data (point, line, polygon) per shapefile.
You can't export a GRASS vector map with both points and areas to a single
shapefile.  You'll have to do it in two passes to two different files with
{{cmd|v.out.ogr}} and different "type=" parameters.
Export lines from GRASS vector map to Shapefile format (generates /tmp/testogr.shp and related files):
v.out.ogr input=multi type=line dsn=/tmp olayer=testogr
Export areas from GRASS vector map to Shapefile format (generates /tmp/testogr.shp and related files):
v.out.ogr input=multi type=area dsn=/tmp olayer=testogr
Export 3D lines from GRASS vector map to Shapefile format:
v.out.ogr input=lines_3d type=line dsn=/tmp olayer=testogr lco="SHPT=ARCZ"
==== Various vector operations ====
* Editing differences
: Tips for [[Digitizing_Area_Features|Digitizing area features with attributes]]
=== Raster import/export ===
* {{cmd|r.in.gdal}} - Import [http://www.gdal.org GDAL] supported raster file into a binary raster map layer.
** Import a binary ArcInfo raster grid into GRASS:
*** See the [http://www.gdal.org/frmt_various.html#AIG GDAL help page for AIC]
*** Often the biggest .adf file is the right one to import -- check your data values after importing even if they visually look correct!
r.in.gdal input=/path/to/map/hdr.adf output=map
* {{cmd|r.out.gdal}} - Exports GRASS raster data into various formats.
** Export a raster as a GeoTIFF for use with ArcView 3.1:
r.out.gdal input=map output=map.tif type=Byte createopt="INTERLEAVE=PIXEL,COMPRESS=PACKBITS"
==== Import ArcASCII raster grid and connect to database ====
The trick is to convert the raster coverage to vector
areas to take advantage of GRASS's rich vector attribute/database tie-ins. You can use {{cmd|r.in.gdal}} for the import.
# import ArcASCII grid to UTM55S location
r.in.gdal  input=aas_z55.asc output=aas_z55
r.colors aas_z55.gdal color=random
r.info aas_z55
# convert to vector areas, using raster value for category
g.region rast=aas_z55
r.to.vect -v in=aas_z55.gdal out=aas_z55 feature=area
# get rid of empty DBF table created by r.to.vect
v.db.droptable aas_z55
# copy real DBF file into $MAPSET/dbf/ directory
eval `g.gisenv`
cp /tmp/au/aas_z55.DBF "$GISDBASE/$LOCATION_NAME/$MAPSET/dbf/aas_z55.dbf"
# connect full DBF database to vector map, use "VALUE" as the key column
v.db.connect map=aas_z55 driver=dbf table=aas_z55 key=value
Done. The data are in GRASS GIS database.
==== Import E00 raster grids ====
* The {{cmd|v.in.e00}} module only handles vector data. You will have to convert raster E00 data into an Arc ASCII grid before importing into GRASS with {{cmd|r.in.gdal}}.
* [http://lists.osgeo.org/pipermail/grass-user/2009-October/052758.html See instructions in this mailing list post] about the "ArcExplorer Import Utility"
== Linking data to GRASS GIS ==
You can link data instead of importing them, use {{cmd|r.external}}, {{cmd|v.external}}, {{cmd|r.external.out}}, and {{cmd|v.external.out}}. Projection of all data must be consistent.
== Various hydrology and terrain analysis commands ==


'''Importing ArcGIS Data'''
<!-- perhaps this should go to GRASS GIS for ArcGIS users page -->
<!-- but in general, this page could contains some common usecases which includes hydrology -->


* Watershed modeling differences:
** ArcInfo wants a depressionless, filled, hydrologically correct DEM.
** {{cmd|r.watershed}} does not need such a DEM, it is happy with a raw DEM even containing depressions, being not filled, and not hydrologically correct (hence, no extra preparations needed!).
* How to [[Creating_watersheds|Create watersheds for specific drainage points]] like the Arc Hydro extension
* See also [[Hydrological Sciences]] for a list of available hydrological GRASS tools
* [http://www.surfaces.co.il/?p=241 Watershed Analysis with GRASS] (when you know ESRI)
* [https://grasswiki.osgeo.org/wiki/Creating_watersheds#Calculating_total_drainage_area_for_each_stream_reach Calculating total upstream area for each stream]


Grass provides convertors for importing ESRI shapefiles, e00 files, and many other GIS formats as well. The key Grass programs for importing vector formats are [http://grass.itc.it/grass61/manuals/html61_user/v.in.ogr.html v.in.ogr] (for ESRI shapefiles, MapInfo files, SDTS, TIGER, etc.) and [http://grass.itc.it/grass61/manuals/html61_user/v.in.e00.html v.in.e00] for e00 format.
== See also ==


Example 1: Import of Shapefiles into Grass
* [[GRASS GIS for ArcGIS users]]
* [[Terminology comparison between ArcGIS and GRASS GIS]]


v.in.ogr dsn=/home/data/navigation_files output=Tracklines layer=Ship_Tracklines
== External links ==


* Basic [http://geostat-course.org/Topic_NetelerMetz_2012 GRASS GIS tutorial] at Geostat 2012
* [http://www.appropedia.org/A_transition_from_ArcGIS_to_open_source_GIS_softwares A transition from ArcGIS to open source GIS softwares]
* [http://gis.stackexchange.com/questions/134/can-arcgis-and-osgeo4w-share-the-same-python-install Can ArcGIS and OSGeo4W share the same python install?]


This is the syntax for v.in.ogr in its most basic form. The ''dsn'' parameter corresponds to the directory path of the vector you are trying to import. You must enter a full path, not a relative path. The ''output'' paramter, aptly enough, is the name of your output Grass vector. The ''layer'' parameter is the name of the input vector, be it shapefile, MapInfo file, or what have you.
[[Category: Documentation]]
[[Category: FAQ]]
[[Category: Hydrology]]
[[Category: Import]]
[[Category: Vector]]
[[Category:ArcGIS]]

Latest revision as of 05:02, 22 July 2016

If you wish to use both GRASS GIS and ArcGIS together, this page is for you.

Working with your ArcGIS data

Importing ArcGIS Data

GRASS GIS provides converters for importing ESRI shapefiles, e00 files, and many other GIS formats as well. The key GRASS modules for importing vector formats are v.in.ogr (for ESRI Shapefiles, MapInfo files, SDTS, TIGER, etc.) and v.in.e00 for e00 format. For raster data, there is r.in.gdal.

Coordinate Reference Systems

The GRASS data structure requires that each data layer have its CRS exactly defined. This is done by maintaining data layers within a "Location". Each Location has a strictly defined projection, and datum, and all the data layers (raster and vector) within that location should already be either created in or projected to that CRS. GRASS does not do "on-the-fly" reprojection to avoid often encountered in other GIS software with datum mismatches. Consequently, data layers in one location are not visible from other locations. However, GRASS does supply a collection of tools for projecting vector and raster layers from one location to another. Use of these tools is explained in the projectionintro.

Vector import/export

  • v.in.ogr - Convert OGR supported vector formats to GRASS vector format.
  • v.out.ogr - Convert from the GRASS vector format to one of the supported OGR vector formats.
  • v.in.e00 - Import a E00 coverage into a GRASS vector map.

Import of Shapefiles into GRASS

specify the directory

v.in.ogr dsn=/home/data/navigation_files output=Tracklines layer=Ship_Tracklines
or just the .shp file name directly
v.in.ogr dsn=Ship_Tracklines.shp output=Tracklines

This is the syntax for v.in.ogr in its most basic form. The dsn parameter corresponds to the directory path of the vector you are trying to import. You can enter a full or relative path. The output paramter, aptly enough, is the name of your output Grass vector. The layer parameter is the name of the input vector, be it shapefile, MapInfo file, or what have you.

Export of Shapefiles from GRASS

Shapefiles can only hold one type of data (point, line, polygon) per shapefile. You can't export a GRASS vector map with both points and areas to a single shapefile. You'll have to do it in two passes to two different files with v.out.ogr and different "type=" parameters.

Export lines from GRASS vector map to Shapefile format (generates /tmp/testogr.shp and related files):

v.out.ogr input=multi type=line dsn=/tmp olayer=testogr 

Export areas from GRASS vector map to Shapefile format (generates /tmp/testogr.shp and related files):

v.out.ogr input=multi type=area dsn=/tmp olayer=testogr 

Export 3D lines from GRASS vector map to Shapefile format:

v.out.ogr input=lines_3d type=line dsn=/tmp olayer=testogr lco="SHPT=ARCZ"

Various vector operations

  • Editing differences
Tips for Digitizing area features with attributes


Raster import/export

  • r.in.gdal - Import GDAL supported raster file into a binary raster map layer.
    • Import a binary ArcInfo raster grid into GRASS:
      • See the GDAL help page for AIC
      • Often the biggest .adf file is the right one to import -- check your data values after importing even if they visually look correct!
r.in.gdal input=/path/to/map/hdr.adf output=map
  • r.out.gdal - Exports GRASS raster data into various formats.
    • Export a raster as a GeoTIFF for use with ArcView 3.1:
r.out.gdal input=map output=map.tif type=Byte createopt="INTERLEAVE=PIXEL,COMPRESS=PACKBITS"

Import ArcASCII raster grid and connect to database

The trick is to convert the raster coverage to vector areas to take advantage of GRASS's rich vector attribute/database tie-ins. You can use r.in.gdal for the import.

# import ArcASCII grid to UTM55S location
r.in.gdal  input=aas_z55.asc output=aas_z55
r.colors aas_z55.gdal color=random
r.info aas_z55

# convert to vector areas, using raster value for category
g.region rast=aas_z55
r.to.vect -v in=aas_z55.gdal out=aas_z55 feature=area

# get rid of empty DBF table created by r.to.vect
v.db.droptable aas_z55

# copy real DBF file into $MAPSET/dbf/ directory
eval `g.gisenv`
cp /tmp/au/aas_z55.DBF "$GISDBASE/$LOCATION_NAME/$MAPSET/dbf/aas_z55.dbf"

# connect full DBF database to vector map, use "VALUE" as the key column
v.db.connect map=aas_z55 driver=dbf table=aas_z55 key=value

Done. The data are in GRASS GIS database.

Import E00 raster grids

Linking data to GRASS GIS

You can link data instead of importing them, use r.external, v.external, r.external.out, and v.external.out. Projection of all data must be consistent.

Various hydrology and terrain analysis commands

See also

External links