⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rdmgendcwmaps

📁 A car navigation system for Unix and PocketPC.
💻
字号:
#!/bin/sh## rdmgenshpmaps## Utility to scan a directory for the Digital Charts of the World# shapefiles and process them through buildmap## Usage:## rdmgenshpmaps [maps=<map-directory-path>] [test] [dryrun] <files>...#maps=/usr/local/share/roadmapprov='*'if [ $# -eq 0 ] ; then  echo 'Usage: rdmgendcwmaps [maps=<map-directory-path>] [test] [dryrun] [<files> ...]'  exit 1fiverbose=''gendir=Ycase $1 in  maps=*) maps=`expr $1 : 'maps=\(.*\)'`          shift          ;;esaccase $1 in  test) verbose=-v        gendir=N        shift        ;;esacDRYRUN=Ncase $1 in  dryrun) DRYRUN=Y          shift          ;;esacif [ -e ./buildmap ] ; then  BUILDMAP=./buildmapelse  BUILDMAP=buildmapfifor i in $*do  base=`basename $i`  FIPS=`expr substr $base 1 5`  echo $BUILDMAP -f DCW -m $maps $verbose $FIPS $i  if [ $DRYRUN != 'Y' ] ; then    $BUILDMAP -f DCW -m $maps $verbose $FIPS $i  fidoneif [ $gendir = 'Y' ] ; then  echo "Generating usdir.rdm, please wait.."  if [ -e buildus ] ; then    echo ./buildus -s --maps=$maps    if [ $DRYRUN != 'Y' ] ; then      ./buildus -s --maps=$maps    fi  else    echo buildus -s --maps=$maps    if [ $DRYRUN != 'Y' ] ; then      buildus -s --maps=$maps    fi  fi fi 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -