Standard または Advancedのライセンスで利用可能。
[空間タイプの作成 (Create Spatial Type)] ジオプロセシング ツール、または CreateSpatialType ArcPy 関数を呼び出す Python スクリプトを使用して、Oracle データベースに Esri ST_Geometry タイプ、サブタイプ、および関数を追加できます。
データベースに ST_Geometry タイプを追加すると、これを使用して空間データを保存できます。
このツールも関数も、sde という名前のユーザーをデータベースに作成します。sde ユーザーは ST_Geometry タイプ、サブタイプ、関数、およびテーブルを所有します。
[空間タイプの作成 (Create Spatial Type)] ジオプロセシング ツールを使用します。
以下の手順では、[空間タイプの作成 (Create Spatial Type)] ジオプロセシング ツールを実行して、Oracle データベースに ST_Geometry タイプをインストールする方法について説明します。
- st_shapelib (Windows) または libst_shapelib (Linux) ライブラリを ArcGIS Desktop のインストール場所にある DatabaseSupport ディレクトリから、Oracle サーバー上の場所にコピーします。
必ず、Oracle サーバーのオペレーティング システムに対応するライブラリを使用してください。
ライブラリを配置したサーバー上のディレクトリは、[空間タイプの作成 (Create Spatial Type)] ツールまたはスクリプトを実行するクライアント コンピューターからアクセスできる必要があります。ライブラリを UNIX または Linux コンピューターに配置する場合は、データベース管理者にディレクトリの読み取りアクセス権とライブラリ ファイルの実行権限があることを確認してください。
- ArcCatalog または ArcMap を起動して、[カタログ] ウィンドウを開き、Oracle sys データベース管理者としてデータベースに接続します。
これによって、*.sde ファイルが C:\Users\<user_name>\AppData\Roaming\ESRI\Desktop<version_number>\ArcCatalog に作成されます。
- [空間タイプの作成 (Create Spatial Type)] ツールを開きます。
[検索] ウィンドウを使用してツールを検索したり、[データ管理] ツールボックスの [ワークスペース] ツールセットからツールを開いたりできます。
- ステップ 3 で作成したデータベース接続を [入力データベース] テキスト ボックスに追加します。
- [SDE ユーザー パスワード] テキスト ボックスに sde データベース ユーザーのパスワードを入力します。
- sde ユーザーのデフォルトの表領域を作成する場合は、[表領域名] テキスト ボックスに入力します。
[空間タイプの作成 (Create Spatial Type)] ツールにより、Oracle のデフォルトの保管場所に 400 MB の表領域が作成されます。表領域の配置場所または表領域のサイズを変更する場合は、Oracle に表領域を作成した後、[表領域名] テキスト ボックスに既存の表領域を指定します。ツールはこの既存の表領域を sde ユーザーのデフォルトとして設定します。
- ST_Geometry シェープ ライブラリのパスを参照するか、入力します。これは、ファイルの名前を含む、libst_shapelib.so または st_shapelib.dll ファイルを配置した Oracle サーバー上のディレクトリのパスです。
たとえば、libst_shapelib.so ファイルを Linux サーバー boxy の libraries ディレクトリに配置した場合は、「/boxy/libraries/libst_shapelib.so」と入力します。
- [OK] をクリックしてツールを実行します。
ST_Geometry タイプ、サブタイプ、および関数が sde ユーザーのスキーマで作成され、シェープ ライブラリのエントリが Oracle に作成されます。
ST_Transform 関数を使用して地理座標系変換を実行する場合は、ArcMap のインストール ディレクトリから pedata フォルダーを Oracle サーバー上にコピーし、サーバー上の PEDATAHOME 環境変数がその場所を示すように設定する必要があります。
CreateSpatialType 関数を使用します。
ArcMap、ArcGIS Pro、または ArcGIS Server コンピューターで CreateSpatialType ArcPy 関数を呼び出す Python スクリプトを実行し、Oracle データベースに Esri ST_Geometry タイプ、サブタイプ、および関数を作成します。
- st_shapelib (Windows) または libst_shapelib (Linux) ライブラリを ArcGIS Desktop のインストール場所にある DatabaseSupport ディレクトリから、Oracle サーバー上の場所にコピーします。
必ず、Oracle サーバーのオペレーティング システムに対応するライブラリを使用してください。
ライブラリを配置したサーバー上のディレクトリは、[空間タイプの作成 (Create Spatial Type)] ツールまたはスクリプトを実行するクライアント コンピューターからアクセスできる必要があります。ライブラリを 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
ST_Geometry タイプ、サブタイプ、および関数が sde ユーザーのスキーマで作成され、シェープ ライブラリのエントリが Oracle に作成されます。
ST_Transform 関数を使用して地理座標系変換を実行する場合は、ArcMap のインストール ディレクトリから pedata フォルダーを Oracle サーバー上にコピーし、サーバー上の PEDATAHOME 環境変数がその場所を示すように設定する必要があります。