GRASS logo

NAME

v.in.osm - Imports OpenStreetMap data into GRASS GIS.

KEYWORDS

osm, vector, import

SYNOPSIS

v.in.osm
v.in.osm --help
v.in.osm [-ol] input=name [output=name] [where=sql_query] [type=string[,string,...]] [table=name] [--overwrite] [--help] [--verbose] [--quiet] [--ui]

Flags:

-o
Override projection check (use current location's projection)
Assume that the dataset has the same projection as the current location
-l
List available OGR layers in data source and exit
--overwrite
Allow output files to overwrite existing files
--help
Print usage summary
--verbose
Verbose module output
--quiet
Quiet module output
--ui
Force launching GUI dialog

Parameters:

input=name [required]
Table file to be imported or DB connection string
output=name
Name for output vector map
where=sql_query
WHERE conditions of SQL statement without 'where' keyword
Example: income < 1000 and population >= 10000
type=string[,string,...]
Name for output vector map
Options: point, line, boundary, centroid
Default: point,line,boundary,centroid
table=name
Name of attribute table

Table of contents

DESCRIPTION

v.in.osm imports OpenStreetMap data.

EXAMPLES

Import from PostgreSQL DB:
v.in.osm input="PG:host=localhost dbname=gis user=ostepok" table=planet_osm_line \
         type=point,line output=roads where="highway is not null" 

Import from OSM PBF file:

v.in.osm input=saarland-latest.osm.pbf table=lines type=point,line output=roads \
         where="highway is not null"

REQUIREMENTS

PostgreSQL, PostGIS, osm2pgsql

SEE ALSO

v.in.ogr

AUTHORS

Stepan Turek

Last changed: $Date: 2016-05-09 15:47:18 +0200 (Mon, 09 May 2016) $

SOURCE CODE

Available at: v.in.osm source code (history)


Main index | Vector index | Topics index | Keywords index | Graphical index | Full index

© 2003-2018 GRASS Development Team, GRASS GIS 7.4.1svn Reference Manual