FME Python拡張機能を使用するのは誰ですか?


回答:


9

私はFMEを使い始めたばかりで、シャットダウンスクリプトを使用してターゲットFGDBを別の場所にコピーし、ログファイルを保存しています。

import distutils.dir_util, shutil, os, time, locale

src = 'C:/Testing/FME/TPW/Third_Party_Wells.gdb'
dst = '//share/Data Services/GIS Data/Data/Third Party Wells/Third_Party_Wells.gdb'

distutils.dir_util.copy_tree(src, dst)

logfile = FME_LogFileName
shutil.copy(logfile, 'C:/temp/PRD_' + os.path.basename(logfile)[:-4] + '_' + time.strftime('%Y_%m_%d_%H_%M_%S', time.localtime()) + '.log')

# Get features written counts
shl_count = str(FME_FeaturesWritten['ThirdPartyWellsSurface'])
bhl_count = str(FME_FeaturesWritten['ThirdPartyWellsBottom'])
lat_count = str(FME_FeaturesWritten['ThirdPartyWellsLaterals'])

# Write out features written counts to log
fm_log = open('C:/temp/PRD_Counts.log','a')
fm_log.write(time.strftime('%m/%d/%Y %I:%M:%S', time.localtime()) + ',' + shl_count + ',' + bhl_count + ',' + lat_count + ',' + str(FME_TotalFeaturesWritten) + '\n')

それは基本的なことですが、私が考えていない制限は本当にありません。アイデアのトンがあり、ここにも。

編集:多数の機能を記述し、それらをCSVログファイルにプッシュするコードに追加されました。


5

オリバーのPythonコーナーをご覧ください。FMEでPythonを使用してできることはたくさんあります。

私はよく10個の異なるトランスフォーマーを使用するのではなく、PythonCallerを使用して1つのトランスフォーマー内でいくつかの属性操作を行います(elif elif elseの場合..)

この例のように、すべての属性を大文字の値に変換する非常に基本的なPythonCallerを使用できます。

def upperAll(feature):
    for att in feature.getAttributeList():
        feature.setAttribute(att,feature.gettAttribute(att).upper())

また、PythonCallerを使用して、障害が発生した場合やFTPサーバーとやり取りした場合などにメールを送信します。本当に制限はありません。

楽しく幸せなFMEingを

ジェフ


あぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁぁ
Chad Cooper、

これに関する追加の質問...電子メールを機能させるために、ポート25(ファイアウォール)へのアクセスを許可する必要があるプログラムは何ですか。私はこれに数週間苦労し、ついに諦めました。
blord-castillo 2012

4

上記の良い例:現在、FMEPediaと呼ばれるナレッジベースの記事を書いています: PythonとFMEの基礎

これには、起動スクリプトでワークスペースを実行する前にファイルを削除する、PythonCallerで機能を操作するなどの簡単な例が含まれます。より複雑な例へのリンクもあります。

ケンブラッグセーフソフトウェア


3

例:

カスタムログ

import os.path, time, os, datetime, __main__ , sys, pyfme,shutil
from pyfme import *

class expFeature(object):
    def __init__(self):
        self.logger = pyfme.FMELogfile()
        pass

    def close(self):
            try:
                #folders creation
                os.makedirs(param_folder)
                #Log creation
                logFile = param_folder + timecreated +".log"
                FILE = open(logFile,"w")
                log=FMELogfile(logFile)
                log.log("Bla bla bla")

そしてメールを送る

message = MIMEMultipart()
message["From"]    = email_from
message["To"]      = email_to
message['Date']    = formatdate(localtime=True)
message["Subject"] = subject
message.attach( MIMEText(html, 'html') )
attachment = MIMEBase('application', "octet-stream")
attachment.set_payload( open(FileLog,"rb").read() )
Encoders.encode_base64(attachment)
attachment.add_header('Content-Disposition', 'attachment; filename="%s"' %       os.path.basename(FileLog))
message.attach(attachment)

smtp = smtplib.SMTP(smtpServer) 
smtp.sendmail(email_from, email_to, message.as_string())         
print "Successfully sent email"
smtp.close() 

1

私は最近、CSVファイルから座標を取得して属性として保存するPythonCallerトランスフォーマーを使用しています。CSVは、関心領域の境界ボックスから境界座標を取得するBoundsExtractor Transformerを使用する別のワークスペースから書き込まれます。

次に、これらの属性を他のWorkspaceRunnerに渡します。WorkspaceRunnerは、境界座標をさらに処理するための検索ウィンドウとして使用します。州全体のデータがあり、州全体で処理するには数時間かかります。処理を特定のウィンドウに制限しているので、全体で1分かかります。

pythonCallerコードは次のとおりです。

import fmeobjects
import csv
import re

# Template Function interface:
def getBounds(feature):

    outputDirectory = FME_MacroValues['Output_Directory']   # Set outputDirectory
    NativeTitle = FME_MacroValues['Native_Title'] # Set NativeTitle
    NativeTitle = re.sub('\W','_',NativeTitle)
    NativeTitle = re.sub(' ','_',NativeTitle)

    csvPath = outputDirectory + '\\' + NativeTitle + '_boundingbox.csv'       # Set csvPath

    # open csv file containing bounding coordinates
    with open(csvPath, 'rb') as csvfile:
        reader = csv.reader(csvfile, delimiter = ',')
        bounds = reader.next()

    # Set bounding variables
    XMIN = float(bounds[0])
    XMAX = float(bounds[1])
    YMIN = float(bounds[2])
    YMAX = float(bounds[3])    

    # Set attributes to variable values
    feature.setAttribute("_xmin", XMIN)
    feature.setAttribute("_ymin", YMIN)
    feature.setAttribute("_xmax", XMAX)
    feature.setAttribute("_ymax", YMAX)

    pass

また、フォルダーツリーがまだ存在しない場合に別の場所にコピーするpython起動スクリプトも使用します。

import os
import fmeobjects
import shutil


srcDir_project = r'W:\AlignmentSheets\PostInstall\Alignment Sheet Generator\ProjectData\ProjectNameFolder'
srcDir_settings = r'W:\AlignmentSheets\PostInstall\Alignment Sheet Generator\ProjectData\Settings'

destBaseDir = FME_MacroValues['Output_Directory']
destDir_project = destBaseDir + '\\' + FME_MacroValues['A_Sheet_Project_Name'] + '\\'
destDir_settings = destBaseDir + '\\Settings\\'

if not os.path.exists(destDir_project):
    shutil.copytree(srcDir_project,destDir_project)
    print 'Successfully created "%s"' % destDir_project
else:
    print '"%s" Already Exists.  Not Creating Folder.' % destDir_project

if not os.path.exists(destDir_settings):
    shutil.copytree(srcDir_settings,destDir_settings)
    print 'Successfully created "%s"' % destDir_settings
else:
    print '"%s" Already Exists.  Not Creating Folder.' % destDir_settings
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.