Permalink
Browse files
Add README for Navteq import and fix PATH.
- Loading branch information...
Showing
with
6 additions
and
1 deletion.
-
+4
−0
navteq/README
-
+2
−1
navteq/navteq_import
|
|
@@ -0,0 +1,4 @@ |
|
|
+The navteq_import script in this directory is designed to be used with Navteq's
|
|
|
+local_streets layer. It works basically like tiger_import, except that you
|
|
|
+provide either a list of .zip files containing the local_streets.* files on the
|
|
|
+command line, or via standard input.
|
|
|
@@ -4,8 +4,9 @@ TMP="/tmp/navteq-import.$$" |
|
|
SHPS="local_streets"
|
|
|
DBFS=""
|
|
|
BASE=$(dirname $0)
|
|
|
+PATH=$PATH:$BASE/../bin
|
|
|
SQL="$BASE/../sql"
|
|
|
-HELPER_LIB="$BASE/../lib/libsqlite3_geocoder.so"
|
|
|
+HELPER_LIB="$BASE/../lib/geocoder/us/sqlite3.so"
|
|
|
DATABASE=$1
|
|
|
shift
|
|
|
|
|
|
|
0 comments on commit
2e5a114