排序 (Data Management)

许可等级:BasicStandardAdvanced

摘要

根据一个或多个字段对要素类或表中的记录按升序或降序进行重新排列。重新排序的结果将被写入到新数据集中。

了解有关排序工作原理的详细信息

插图

Sort by three attributes

用法

语法

Sort_management (in_dataset, out_dataset, sort_field, {spatial_sort_method})
参数说明数据类型
in_dataset

要根据排序字段中的字段值对记录进行重新排序的输入数据集。

Table View
out_dataset

输出要素类或表。

Feature Class;Table
sort_field
[[Sort Field, Direction],...]

指定包含对输入记录重新排序所用的值的字段,以及记录的排序方向。

  • ASCENDING按照值从低到高的顺序对记录进行排序。
  • DESCENDING按照值从高到低的顺序对记录进行排序。
Value Table
spatial_sort_method
(可选)

指定对要素进行空间排序的方法。仅当将“Shape”作为排序字段之一时,排序方法才可用。

  • UR从右上角开始排序。这是默认设置。
  • UL从左上角开始排序。
  • LR从右下角开始排序。
  • LL从左下角开始排序。
  • PEANO使用空间填充曲线算法(也称为皮亚诺曲线)排序。
String

代码实例

排序示例 1(Python 窗口)

以下 Python 窗口脚本演示了如何根据字段值使用“排序”对要素进行排列。

import arcpy
from arcpy import env

env.workspace = "C:/data/city.gdb"

arcpy.Sort_management("crime", "crime_Sort", [["DATE_REP", "ASCENDING"]])
排序示例 2(独立 Python 脚本)

以下 Python 脚本演示了如何在独立脚本中使用“排序”。

# Name: Sort_example2.py
# Description: Sorts wells by location and well yield.
# Author: ESRI

# Import system modules
import arcpy
from arcpy import env

try:
    # Set workspace environment
    env.workspace = "C:/data/newfoundland.gdb"

    # set local variables
    in_dataset = "wells"
    out_dataset = "wells_Sort"

    # Order features first by location (Shape) and then by WELL_YIELD
    sort_fields = [["Shape", "ASCENDING"], ["WELL_YIELD", "DESCENDING"]]

    # Use Peano algorithm
    sort_method = "PEANO"

    # execute the function
    arcpy.Sort_management(in_dataset, out_dataset, sort_fields, sort_method)
    
    print arcpy.GetMessages()

except arcpy.ExecuteError:
    # Print error messages
    print arcpy.GetMessages(2)
    
except Exception as ex:
    print ex.args[0]

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 受限制
ArcGIS for Desktop Standard: 受限制
ArcGIS for Desktop Advanced: 是
5/10/2014