タグ付けされた質問 「attributeerror」

1
arcpy.geometry __geo_interface__およびAsShape()関数:精度と穴の喪失
arcpyジオメトリをgeojsonとしてシリアル化しているため、後でジオメトリとして「ハイドレート」して元に戻すことができ、サイクルで2つの問題が発生しています。 問題1:精度 R0 = arcpy.SearchCursor(self.shpTest, "FID=0").next().getValue("Shape") geojson = R0.__geo_interface__ R1 = arcpy.AsShape(geojson) self.assertTrue(R0.equals(R1)) <<< THIS FAILS 文字列表現を確認すると、座標がわずかに変更されています。 geojson2 = R1.__geo_interface__ print geojson print geojson2 {'type': 'Polygon', 'coordinates': [[(442343.5516410945, 4814166.6184399202), (442772.17749834526, 4811610.7383281607), (441565.67508534156, 4811499.6131059099), (440772.50052100699, 4814184.7808806188), (442343.5516410945, 4814166.6184399202)]]} {'type': 'Polygon', 'coordinates': [[(442343.55169677734, 4814166.6185302734), (442772.17749023438, 4811610.73828125), (441565.67510986328, 4811499.6130981445), (440772.50048828125, 4814184.7808837891), (442343.55169677734, 4814166.6185302734)]]} …

1
AttributeErrorのデバッグ: 'module'オブジェクトにArcPyのPython Toolboxの属性 'Parameter'がありませんか?
大きな.pytスクリプト(pythonツールボックス)があり、それを多くのファイル(1ファイル-1ツール)に分割しようとしています。 単一の.pytファイルではすべてが完璧に機能しますが、ファイルが分割されると、次のメッセージが表示されます。AttributeError: 'module' object has no attribute 'Parameter'。 ファイルの構造: My Catalog: -- toolbox.pyt -- toolpackage: ---- configurator.py ---- __init__.py toolbox.pyt: # This Python file uses the following encoding: utf-8 import arcpy from toolpackage.configurator import ToolboxConfigurator class Toolbox(object): def __init__(self): """Define the toolbox (the name of the toolbox is the name …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.