在 Standard 或 Advanced 许可等级下可用。
可以使用创建空间类型地理处理工具或调用 CreateSpatialType ArcPy 函数的 Python 脚本将 Esri ST_Geometry 类型、子类型和函数添加到 Oracle 数据库。
将 ST_Geometry 类型添加到数据库后,即可用其来存储空间数据。
工具和函数均可在数据库中创建名为 sde 的用户。sde 用户拥有 ST_Geometry 类型、子类型、函数和表。
注:
在 Windows 服务器上进行部署,ST_Geometry 库需要使用 Microsoft Visual C++ Redistributable Package (x64)。有关所需的软件包版本,请参阅 Oracle 数据库要求。如果服务器上没有此软件包,可从 Microsoft 站点下载该包并安装。
使用创建空间类型地理处理工具
以下步骤对如何运行创建空间类型地理处理工具在 Oracle 数据库中安装 ST_Geometry 类型进行了说明:
- 从 My Esri 下载 st_shapelib (Windows) 或 libst_shapelib (Linux) 库,并将其移动到 Oracle 服务器上的某一位置。
确保使用适合 Oracle 服务器操作系统的库。
运行创建空间类型工具或脚本的客户端计算机必须能够访问服务器上放置库的目录。如果将库放在 UNIX 或 Linux 计算机上,请确保数据库管理员对目录具有读取访问权限,并对库文件具有执行权限。
- 在 ArcGIS Pro 中打开一个工程,再打开目录窗格,然后以 Oracle 系统数据库管理员身份连接到数据库。
这将在工程文件夹中创建一个 .sde 文件。
- 打开创建空间类型工具。
可以使用搜索窗口搜索工具或者从数据管理工具箱的“工作空间”工具集中打开工具。
- 将在第 3 步中创建的数据库连接添加到输入数据库文本框中。
- 在 SDE 用户密码文本框中输入 sde 数据库用户要使用的密码。
- 如果要创建一个表空间来用作 sde 用户的默认表空间,则在表空间名称文本框中输入其名称。
创建空间类型工具将在 Oracle 默认存储位置创建一个 400 MB 的表空间。如果想要控制表空间的放置位置或表空间的大小,请先在 Oracle 中创建表空间,并在表空间名称文本框中指定现有表空间。该工具会将预先存在的表空间设置为 sde 用户的默认表空间。
- 浏览到或输入 ST_Geometry 形状库路径。这是您在其中放置了 libst_shapelib.so 或 st_shapelib.dll 文件的 Oracle 服务器目录的路径(路径包含文件名)。
例如,如果您将 libst_shapelib.so 文件放置在名为 boxy 的 Linux 服务器上的目录 libraries 中,则输入 /boxy/libraries/libst_shapelib.so。
- 单击运行。
将在 sde 用户方案中创建 ST_Geometry 类型、子类型和函数,并在 Oracle 中创建一个形状库条目。
如果打算使用 ST_Transform 函数执行地理变换,则必须从 ArcGIS Pro 安装目录复制 pedata 文件夹,将其放置到 Oracle 服务器上,并在服务器上设置指向该位置的 PEDATAHOME 环境变量。
使用 CreateSpatialType 函数
运行一个 Python 脚本,该脚本可调用任意 ArcMap、ArcGIS Pro 或 ArcGIS Server 计算机上的 CreateSpatialType ArcPy 函数,以在 Oracle 数据库中创建 Esri ST_Geometry 类型、子类型和函数。
- 从 My Esri 下载 st_shapelib (Windows) 或 libst_shapelib (Linux) 库,并将其移动到 Oracle 服务器上的某一位置。
确保使用适合 Oracle 服务器操作系统的库。
运行创建空间类型工具或脚本的客户端计算机必须能够访问服务器上放置库的目录。如果将库放在 UNIX 或 Linux 计算机上,请确保数据库管理员对目录具有读取访问权限,并对库文件具有执行权限。
- 在 ArcGIS 客户端计算机上创建文本文件,然后将以下脚本复制到此文件。
""" Name: create_spatial_type.py Description: Provide connection information to an Oracle or PostgreSQL database and create spatial type in the database. Type create_spatial_type.py -h or create_spatial_type.py --help for usage Author: Esri """ # Import system modules import arcpy, os, optparse, sys # Define usage and version parser = optparse.OptionParser(usage = "usage: %prog [Options]", version="%prog 1.0 for " + arcpy.GetInstallInfo()['Version'] ) #Define help and options parser.add_option ("--DBMS", dest="Database_type", type="choice", choices=['ORACLE', 'POSTGRESQL', ''], default="", help="Type of enterprise DBMS: ORACLE, or POSTGRESQL.") parser.add_option ("-i", dest="Instance", type="string", default="", help="DBMS instance name") parser.add_option ("--auth", dest="account_authentication", type ="choice", choices=['DATABASE_AUTH', 'OPERATING_SYSTEM_AUTH'], default='DATABASE_AUTH', help="Authentication type options (case-sensitive): DATABASE_AUTH, OPERATING_SYSTEM_AUTH. Default=DATABASE_AUTH") parser.add_option ("-U", dest="Dbms_admin", type="string", default="", help="DBMS administrator user") parser.add_option ("-P", dest="Dbms_admin_pwd", type="string", default="", help="DBMS administrator password") parser.add_option ("-D", dest="Database", type="string", default="none", help="Database name: Not required for Oracle") parser.add_option ("-p", dest="Password", type="string", default="", help="SDE user password") parser.add_option ("-t", dest="tablespace", type="string", default="", help="Default tablespace for SDE user") parser.add_option ("--path", dest="libpath", type="string", default="", help="path to the ST shape library including library file name.") # Check if value entered for option try: (options, args) = parser.parse_args() #Check if no system arguments (options) entered if len(sys.argv) == 1: print "%s: error: %s\n" % (sys.argv[0], "No command options given") parser.print_help() sys.exit(3) #Usage parameters for spatial database connection database_type = options.Database_type.upper() instance = options.Instance account_authentication = options.account_authentication.upper() password = options.Password tablespace = options.tablespace database = options.Database.lower() dbms_admin = options.Dbms_admin dbms_admin_pwd = options.Dbms_admin_pwd lib_path = options.libpath if( database_type ==""): print " \n%s: error: \n%s\n" % (sys.argv[0], "DBMS type (--DBMS) must be specified.") parser.print_help() sys.exit(3) # Local variables instance_temp = instance.replace("\\","_") instance_temp = instance_temp.replace("/","_") instance_temp = instance_temp.replace(":","_") Conn_File_NameT = instance_temp + "_" + database if os.environ.get("TEMP") == None: temp = "c:\\temp" else: temp = os.environ.get("TEMP") if os.environ.get("TMP") == None: temp = "/usr/tmp" else: temp = os.environ.get("TMP") Connection_File_Name = Conn_File_NameT + ".sde" Connection_File_Name_full_path = temp + os.sep + Conn_File_NameT + ".sde" # Check for the .sde file and delete it if present arcpy.env.overwriteOutput=True if os.path.exists(Connection_File_Name_full_path): os.remove(Connection_File_Name_full_path) print "\nCreating Database Connection File...\n" # Process: Create Database Connection File... # Usage: out_file_location, out_file_name, DBMS_TYPE, instance, database, account_authentication, username, password, save_username_password(must be true) arcpy.CreateDatabaseConnection_management(out_folder_path=temp, out_name=Connection_File_Name, database_platform=database_type, instance=instance, database=database, account_authentication=account_authentication, username=dbms_admin, password=dbms_admin_pwd, save_user_pass="TRUE") for i in range(arcpy.GetMessageCount()): if "000565" in arcpy.GetMessage(i): #Check if database connection was successful arcpy.AddReturnMessage(i) arcpy.AddMessage("\n+++++++++") arcpy.AddMessage("Exiting!!") arcpy.AddMessage("+++++++++\n") sys.exit(3) else: arcpy.AddReturnMessage(i) arcpy.AddMessage("+++++++++\n") # Process: Create spatial type... try: print "Create spatial type...\n" arcpy.CreateSpatialType_management(input_workspace=Connection_File_Name_full_path, sde_user_password=password, tablespace_name=tablespace, st_shape_library_path=lib_path) print "after spatial type...\n" for i in range(arcpy.GetMessageCount()): arcpy.AddReturnMessage(i) arcpy.AddMessage("+++++++++\n") except: for i in range(arcpy.GetMessageCount()): arcpy.AddReturnMessage(i) if os.path.exists(Connection_File_Name_full_path): os.remove(Connection_File_Name_full_path) #Check if no value entered for option except SystemExit as e: if e.code == 2: parser.usage = "" print "\n" parser.print_help() parser.exit(2)
- 以 .py 扩展名保存该文件。
- 运行脚本,同时提供特定于您的站点的选项和信息。
例如,此脚本在 Oracle 实例 oserve/orcl 中创建 ST_Geometry 类型,而 ST_Geometry 库位于 Oracle 服务器 (oserve) 的 /ora/shape 目录中。
create_spatial_type.py --DBMS ORACLE -i oserve/orcl --auth DATABASE_AUTH -U sys -P M3tsy$ -p 3$@b0eg -t sde --path /net/oserve/ora/shape/libst_shapelib.so
将在 sde 用户方案中创建 ST_Geometry 类型、子类型和函数,并在 Oracle 中创建一个形状库条目。
如果打算使用 ST_Transform 函数执行地理变换,则必须从 ArcGIS Pro 安装目录复制 pedata 文件夹,将其放置到 Oracle 服务器上,并在服务器上设置指向该位置的 PEDATAHOME 环境变量。