Advertisement

批量处理可达性分析

阅读量:
复制代码
    # Name: MakeODCostMatrixAnalysisLayer_Workflow2.py
    # Description: Find the travel time to the closest hospital from each census
    #               tract and join the travel time and hospital name to the input
    #               tracts.
    # Requirements: Network Analyst Extension
    
    # Import system modules
    import arcpy
    from arcpy import env
    import datetime
    import os
    
    try:
    # Check out Network Analyst license if available. Fail if the Network Analyst license is not available.
    if arcpy.CheckExtension("network") == "Available":
        arcpy.Che

全部评论 (0)

还没有任何评论哟~