Skip to content

Utility Process NAVTEQ for EnviroAtlas Analyses

donebert edited this page Aug 10, 2022 · 10 revisions

Process NAVTEQ for EnviroAtlas Analyses

Summary

Processes NAVTEQ Streets data from NAVTEQ geodatabases to optionally produced the three road feature classes used in the EnviroAtlas community-based metrics:

  • Walkable Roads
  • Roads for Intersection Density Analysis
  • Busy Roads - Interstates, Arterials, and Connectors

Usage

Walkable Roads:

  • Process Navteq.gdb\Streets
    1. select features where FUNC_CLASS <> 1 or 2
    2. remove from the selection features where FERRY_TYPE <> H
    3. remove from the selection features where SPEED_CAT = 1, 2, or 3
    4. remove from the selection features where AR_PEDEST = N
    5. copy remaining selected features to [prefix]_RdsWalkable

Roads for Intersection Density:

  • Process Navteq.gdb\Streets
    1. select features where FUNC_CLASS <> 1 or 2
    2. remove from the selection features where FERRY_TYPE <> H
    3. remove from the selection features where SPEED_CAT = 1, 2, or 3
    4. remove from the selection features where AR_PEDEST = N
    5. remove from the selection features where SPEED_CAT = 8
    6. assign Navteq.gdb\landUseA codes to road segments
    7. assign Navteq.gdb\landUseB codes to road segments
    8. trim unnecessary fields
    9. remove roads with no street names from these land use type areas: AIRPORT, AMUSEMENT PARK, BEACH, CEMETERY, HOSPITAL, INDUSTRIAL COMPLEX, MILITARY BASE, RAILYARD, SHOPPING CENTRE, or GOLF COURSE
    10. add a MergeClass field
    11. set MergeClass field value to an initial value of 1
    12. replace MergeClass field value to 0 where DIR_TRAVEL = 'B'
    13. convert any multipart roads to singlepart
    14. merge divided roads to [prefix]_RdsIntDens using the MergeClass field and a merge distance of '30 Meters'
  • NOTE: Only roads with the same value in the mergeField and within the mergeDistance will be merged. Roads with a MergeClass value equal to zero are locked and will not be merged. All non-merged roads are retained.

Interstates, Arterials, and Connectors

  • Process Navteq.gdb\Streets
    1. select features where FUNC_CLASS = 1, 2, 3, or 4
    2. remove from the selection features where FERRY_TYPE <> H
    3. copy remaining selected features to [prefix]_RdsIAC
    4. add field, LANES, to [prefix]_RdsIAC. Calculating its value as TO_LANES + FROM_LANES
    5. replace LANES field value to 2 for features where LANES field = 0
  • NOTE: The user can locate and change these records with the following query: TO_LANES = 0 And FROM_LANES = 0

Syntax

PNFEA (NAVTEQ_geodatabase, {Walkable_roads}, {Intersection_density_roads}, {Interstates,_arterials,_and_collectors}, Output_workspace, File_base_name)

Parameter Explanation Data Type
NAVTEQ_geodatabase The path to the geodatabase. Workspace
Walkable_roads (Optional) Specifies whether the Walkable Roads feature class will be generated.

  • false - Walkable Roads feature class will not be output. This is the default.
  • true - Walkable Roads feature class will be output.
Boolean
Intersection_density_roads (Optional) Specifies whether the Intersection Density Roads feature class will be generated.

  • false - Intersection Density Roads feature class will not be output. This is the default.
  • true - Intersection Density Roads feature class will be output.
Boolean
Interstates,_arterials,_and_collectors (Optional) Specifies whether the Interstate, Arterial, and Collector Roads feature class will be generated.

  • false - Interstate, Arterial, and Collector Roads feature class will not be output. This is the default.
  • true - Interstate, Arterial, and Collector Roads feature class will be output.
Boolean
Output_workspace The path to the Output workspace.

If the Output workspace is a file folder, new layers will be saved as shapefiles. If the Output workspace is a geodatabase, new layers will be saved as geodatabase feature classes.
Workspace
File_base_name A character string used as the file name prefix for all output feature classes. String

Credits

Environments

Use limitations

There are no access and use limitations for this item.

arrow_up Page

Table of contents

Clone this wiki locally