排序 (数据管理)

摘要

该工具用于根据字段值对要素类或表中的记录按升序或降序进行重新排列。重新排序的结果将被复制到新数据集中。

用法

语法

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/input/sort.gdb"

arcpy.Sort_management("crime", "crime_Sort", [["DATE_OCCURRED", "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
    inDataset = "wells"
    outDataset = "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(inDataset, outDataset, sort_fields, sort_method)

except:
    # Print error messages
    arcpy.GetMessages()

环境

相关主题

许可信息

ArcView: 是
ArcEditor: 是
ArcInfo: 是

7/10/2012