[GIS] How to compute area in acres in QGIS

areaqgis

I am new to QGIS. I am creating a shapefile that will have several polygons. I need to have a column in the attribute table that will show the acres of each polygon. I have successfully done this but when I draw new polygons they don't get their acres calculated. What is the simplest way to overcome this? I am under the impression that this could perhaps be accomplished through GRASS or Python. I don't know anything about these programs though. Ultimately, I need to have a simple system for drawing new polygons labeling them with a field ID and having the ares calculated and labeled. This needs to be simple enough that interns who have never used gis can pick it up relatively quickly.

Best Answer

Activate edit mode, and open field calculator. There, use the Geometry -> $area function on existing field, or create a new field. Note that the units are the same as your CRS, so if it's in square meters, multiply by 0.00024711

Example, note the field type is decimal

Related Question