Flächen berechnen

Hallo,

ich habe zwei Polygon Layer. und ich weiß wie groß die Fläche in m² der Polygone des 1. Layers ist. und die Polygone meines 2. Layers liegen innerhalb der Polygone des 1. Layers, und nun möchte ich gerne wissen wie ich auf die Größe der Fläche der Polygone des 2. Layers komme? Geht das über den Raster Calculator? Ich hoffe ich habe mein Problem verständlich erklärt.

Gruß Heike
nee quatsch, raster calc. bei polygon.. nee das wird wohl eher nichts..
heike
Hallo Heike,

du kannst es so machen, wie es in der Hilfe unter 'Area' steht (oder mit installiertem deutschen Supplement vielleicht unter Fläche):

Click Editor on the Editor toolbar and click Start Editing.

You can make calculations without being in an editing session; however, in that case, there is no way to undo the results.

Right-click the shapefile layer you want to edit and click Open Attribute Table.

Right-click the field heading for area and click Calculate Values.

If there is no field for area values, you can add a new field for area by clicking the Options button and selecting Add Field. However, to add a new field, you need to exit the editing session.

Check Advanced.

Type the following VBA statement in the first text box:

Dim dblArea as double
Dim pArea as IArea
Set pArea = [shape]
dblArea = pArea.area

Type the variable dblArea in the text box directly under the area field name.

Click OK.

oder du besorgst dir eine der vielen Extensions von der ArcScripts-Seite, z.B. die XTools Pro

Viel Spaß, Mx.
Hallo Maxilla,

ich hab es mit der erweiterung XTools Pro und es hat super geklappt.. juhu..

ganz vielen dank für die hilfe

liebe grüße heike