Gis, Qgis, ArcGisย  Experts Just a Click Away

Calculating polygon area is one of the most common GIS tasks. In QGIS, the calculation itself can be as simple as using $area in the Field Calculator, but a reliable acreage result depends on more than typing an expression. The layerโ€™s coordinate reference system (CRS), project measurement settings, geometry validity, unit conversion, and the question being asked all matter.

This guide explains how to calculate area in acres using QGIS for parcels, farms, forests, lakes, wetlands, municipal boundaries, conservation areas, development sites, and other polygon datasets. The workflow reflects the current QGIS 3.44 documentation terminology; icons and toolbar placement can vary slightly in older releases. [1] [2]

How do you calculate acres in QGIS?

Load a polygon layer, verify its CRS and measurement settings, and use the Open Field Calculator button in the attribute table to create a Decimal number field such as area_acres. The safest current-QGIS workflow is to set the projectโ€™s area unit to Acres and calculate $area; alternatively, set the area unit to Square meters and calculate $area / 4046.8564224. One international acre equals 4,046.8564224 square meters, so the division is valid only when the value being divided is actually in square meters. [1]

Fast answer: For a projected, locally appropriate layer whose project area unit is set to square meters, use round($area / 4046.8564224, 2). If the project area unit is set to Acres, use round($area, 2) instead. Always verify the result against the layerโ€™s CRS and measurement settings.

Why CRS matters when calculating acreage

QGIS calculates geometry measurements from coordinates. A CRS defines how numerical coordinates relate to locations on Earth and may express them as angular degrees or linear units such as meters and feet. QGIS supports both geographic and projected CRSs and can transform layers on the fly for display, but on-the-fly display transformation does not permanently change the coordinates stored in the source layer. [3]

Geographic CRS: coordinates in degrees

A geographic CRS, such as WGS 84 / EPSG:4326, stores positions as longitude and latitude. Degrees are angular units, not a uniform ground distance: the length represented by one degree of longitude changes with latitude. A geographic CRS can be appropriate for storage, exchange, and some geodesic measurement workflows, but it is not a license to assume that a raw coordinate-based area is in square meters.

Projected CRS: coordinates in linear units

A projected CRS represents the curved Earth on a flat coordinate plane. Its coordinates commonly use meters, feet, or another linear unit. For small or medium-sized projects, an appropriate local or regional projected CRS is often the clearest choice for planar area calculations. For larger regions, an equal-area projection may be more suitable because it is designed to preserve area relationships, although every projection has a geographic area of use and other trade-offs. [3]

The right CRS depends on the extent and purpose of the analysis. A state-plane or local projected CRS may be excellent for property work in one U.S. county and unsuitable for a country-wide calculation. Do not select a universal CRS merely because it is familiar.

Area units and conversions

QGIS can work with square meters, square kilometers, square feet, square yards, acres, hectares, and square miles. The unit shown or returned depends on the expression and the active project or geometry-measurement context. Confirm the unit before converting.

Unit Equivalent
1 acre 4,046.8564224 mยฒ
1 acre 43,560 ftยฒ
1 hectare 10,000 mยฒ
1 acre approximately 0.40468564224 hectares
1 kmยฒ approximately 247.105381467 acres
1 square mile 640 acres

The central formulas are:

acres = square meters / 4,046.8564224
acres = square feet / 43,560
acres = hectares ร— 2.47105381467
acres = square kilometers ร— 247.105381467

For example, a polygon measured as 20,234.282112 square meters is 5 acres. A polygon measured as 217,800 square feet is also 5 acres. These are standard unit conversions; the U.S. Geological Survey lists 43,560 square feet and approximately 4,047 square meters per acre in its conversion table. [9] They do not correct a wrong CRS, a bad geometry, or an unsuitable measurement method.

A practical example

Suppose you have a parcel layer and want to calculate the acreage of every property. The same workflow works for agricultural fields, forest stands, lakes, wetlands, flood zones, county boundaries, and development sites. The example will create a numeric field named area_acres, calculate one acreage value for every polygon, round values for reporting, and then summarize the layer or a selection.

Load the polygon layer in QGIS

  1. Open QGIS and create a new project or open an existing one.
  2. Add the dataset using Layer > Add Layer or the appropriate Data Source Manager option.
  3. In the Layers panel, confirm that the layer is a vector polygon layer. You can inspect the layerโ€™s properties and geometry information if the geometry type is unclear.
  4. Right-click the layer and choose Open Attribute Table. Each row represents a feature and each column represents an attribute. [2]
  5. Identify the records you want to measure. Leave all features selected for a layer-wide calculation, or select specific polygons if you are working on a subset.

Area calculations apply to polygons. A point has no polygonal area, and a lineโ€™s $length is a length rather than an area. If the layer is a line or point layer, first determine whether the data needs to be buffered or otherwise converted into polygons; do not expect a polygon-area field to provide a meaningful result for the original geometry.

Check the layer CRS

Before calculating acreage, right-click the layer and choose Propertiesโ€ฆ. In the Source tab, inspect the assigned CRS, its authority code, and its units. The Source tab displays the layerโ€™s assigned CRS; QGIS documentation specifically distinguishes assigning the correct CRS from reprojecting data into another CRS. [4]

Ask these questions:

  • Is the CRS geographic, with coordinates in degrees?
  • Is it projected, with coordinates in meters or feet?
  • Is the CRS appropriate for the layerโ€™s geographic extent?
  • Does its area unit match the value you intend to convert?
  • Is the CRS known and correctly assigned, or is the source missing its projection information?

If a layer has no CRS or has the wrong CRS, do not use Set Layer CRS as a substitute for reprojection. Assigning a CRS tells QGIS how to interpret existing coordinates; it does not move those coordinates. Use the authoritative dataset metadata to identify the correct CRS before assigning it.

Choose the safest measurement workflow

For a local parcel or farm project, choose a suitable local or regional projected CRS, normally one using meters or feet. For a large geographic area, consider an appropriate equal-area CRS or a geodesic/ellipsoidal workflow. The correct choice depends on the extent, latitude, required accuracy, and purpose of the result.

QGIS also has a project CRS. The project CRS controls the common coordinate system used to render layers on the map canvas and supports on-the-fly transformation. Changing the project CRS changes display and project behavior; it does not necessarily create a permanently reprojected copy of the source data. [3]

For reproducible reporting, document both the layer CRS and the project measurement settings. In QGIS, review the projectโ€™s Distance units, Area units, and Ellipsoid settings in the project or application measurement configuration. The current QGIS expression documentation states that $area respects the current project ellipsoid setting and area unit. [1]

Reproject a layer when necessary

If the source is in longitude/latitude or an unsuitable projection, create a projected copy:

  1. Right-click the layer and choose Export > Save Features Asโ€ฆ.
  2. In the export dialog, choose the output format and file path.
  3. Select an appropriate target CRS using the CRS selector.
  4. Save the output layer and add it to the project.
  5. Confirm that the new layer appears in the correct location and that its geometry type and attributes were preserved.
  6. Use the projected copy for the acreage calculation, while retaining the original as an unmodified source.

QGIS also documents vector reprojection through Processing algorithms. In Layer Properties > Source > Coordinate Reference System, use CRS assignment only to correct missing or incorrect metadata; for a true reprojection, save to another layer or use a reprojection algorithm. [4] [5]

Configure the area unit deliberately

You have two reliable patterns. The first is simplest for most users:

Set the project area unit to Acres

Set the projectโ€™s area unit to Acres, choose a suitable CRS or a carefully configured ellipsoidal measurement method, and calculate:

$area

Because current QGIS documentation says $area respects the project ellipsoid and area unit, the expression returns the current featureโ€™s area in the configured area unit. [1] This makes the expression easy to read, but the project settings must be recorded and verified.

Set the area unit to Square meters

Set the project area unit to Square meters, use the appropriate measurement method, and calculate:

$area / 4046.8564224

This is the direct square-meter-to-acre formula. It is correct only if $area is returning square meters at the time the expression is evaluated. A field name such as area_m2 can make the workflow auditable:

round($area, 3)

followed by:

round("area_m2" / 4046.8564224, 2)

Do not divide an unknown $area value by 4,046.8564224 merely because the layer is visible in a meter-based project. First confirm the active area unit and ellipsoid/planimetric settings.

Calculate acreage with the Field Calculator

  1. Open the polygon layerโ€™s attribute table.
  2. Click Open Field Calculator. The current attribute-table documentation lists this as the tool for updating fields and identifies Ctrl+I as its default shortcut. [2]
  3. Select Create a new field.
  4. Enter area_acres as the field name.
  5. Choose Decimal number as the field type. Set a suitable length and precision for the data provider; two decimal places is common for general property reporting, while technical work may retain more precision.
  6. Enter the expression appropriate to your configured unit.
  7. Review the expression preview or result where available.
  8. Click OK or Apply to calculate the values.
  9. Inspect several polygons, including a small and a large feature.
  10. Click Toggle editing or Save Edits, depending on the layer and workflow, to preserve the new field and its values.

For Pattern A, use:

round($area, 2)

For Pattern B, use:

round($area / 4046.8564224, 2)

The round(value, places) expression controls displayed/stored decimal precision in the calculated value. Avoid excessive decimals in a report: a value such as 12.347891 acres can suggest a level of survey precision that the source data does not support.

What does $area mean in QGIS?

$area is a QGIS geometry variable that returns the area of the current feature. It is useful because the same expression can be used in the Field Calculator, labels, filters, symbology expressions, and other expression contexts. [1]

The important qualification is that $area is not a universal โ€œsquare metersโ€ command. Current QGIS documentation says its calculation respects the projectโ€™s ellipsoid setting and area unit. Therefore, a result can differ when you change project measurement settings, ellipsoid choice, CRS, or geometry. [1] Two QGIS projects can produce slightly different values from the same layer if one uses a planar projected measurement and the other uses ellipsoidal measurement.

Use the following mental model:

$area gives the area of the current polygon under the active QGIS measurement configuration. The unit is part of the result, not an afterthought.

For a purely planar calculation, a suitable projected CRS and a None/Planimetric ellipsoid setting may be appropriate. For broad geographic areas or cases where the Earthโ€™s curvature matters, an ellipsoidal/geodesic measurement may be preferable. Whichever approach you use, record it with the CRS and date of analysis.

Calculate or inspect acreage without creating a permanent field

A permanent field is useful when the result must travel with the dataset, but it is not always necessary. You can use $area or an acres expression in a label, map tip, data-defined display, selection expression, or feature-identification context. For example, an acreage label can use:

format_number($area, 2) || ' acres'

Use that expression only when the project area unit is Acres. If the project is configured in square meters, use:

format_number($area / 4046.8564224, 2) || ' acres'

The Identify Features tool can show expression-driven geometry information and attributes for a clicked polygon. Expressions are also useful for temporary filtering and graduated symbology, because they allow analysis without adding a field solely for visualization. Verify the active unit before interpreting the preview.

Calculate acreage for all polygons

To calculate every polygon in a layer, leave the layer unfiltered and use the Field Calculator to create area_acres. The expression is evaluated once for each feature, producing an individual acreage value in each row. Review records across the layer, save edits, and save or export the updated data source.

If only some polygons should be calculated, select them first and use the Field Calculator option to update selected features only. Read the dialog carefully: an accidental all-feature update can overwrite values outside the intended subset.

Calculate acreage for selected polygons

There are two different questions:

  1. What is the acreage of each selected polygon? Calculate or inspect the area_acres value for each selected row.
  2. What is the combined acreage of the selected polygons? Sum the acreage values for the selection.

Select one polygon to inspect its individual acreage. Select several polygons with the selection tools, open the attribute table filtered to selected features if useful, and use the numeric field summary or Statistics panel to obtain the sum. QGISโ€™s attribute-table workflow supports selection and selected-feature views, and the Statistics panel/field statistics can summarize numeric fields. [2] [6]

A selection is not automatically a dissolved union. If selected polygons overlap, their summed individual areas count the overlap more than once. That distinction is essential for land-use, flood-zone, and administrative datasets.

Calculate total acreage

Statistics panel

The simplest method is to open the Statistics panel, choose the polygon layer and area_acres field, and read the Sum value. Repeat the calculation with a selection when you need selected-feature acreage. The exact panel placement can vary by QGIS layout, but the field-statistics concept is current and intended for numeric summaries. [6]

Aggregate expression

QGIS expressions support aggregate functions such as sum. A documented aggregate pattern is:

aggregate(
  layer := 'parcels',
  aggregate := 'sum',
  expression := "area_acres"
)

Replace parcels with the actual layer name. To sum only features meeting a condition, use a filter, for example:

aggregate(
  layer := 'parcels',
  aggregate := 'sum',
  expression := "area_acres",
  filter := "status" = 'Active'
)

For a layer-wide total in a suitable aggregate context, sum("area_acres") is also useful. The Statistics panel is usually clearer for beginners because it visibly identifies the layer, field, and selection state. [1]

Processing and exported summaries

For repeatable production work, use a Processing field-statistics or table-summary workflow, or export the acreage field to a table and sum it in a spreadsheet. Keep the CRS, measurement method, field definition, and selection criteria with the output so the total can be reproduced.

Avoid double-counting overlapping polygons

A total of polygon areas answers โ€œwhat is the sum of the features?โ€ It does not necessarily answer โ€œhow much unique ground is covered?โ€ Overlap can occur because of parcel errors, multiple land-use classes, overlapping flood zones, multipart datasets, or boundaries from different administrative systems.

Before reporting a unique covered area, inspect the data and decide whether to:

  • repair invalid geometry;
  • dissolve polygons that represent one intended coverage class;
  • remove or resolve overlaps;
  • use union or intersection to construct the analytical coverage; or
  • report both the feature sum and the non-overlapping union area.

Do not dissolve or repair automatically without understanding the data model. A geometry operation can alter boundaries and therefore change the result.

Calculate acres from feet

If the layer is correctly represented in U.S. feet and $area is configured to return square feet, use:

round($area / 43560, 2)

The formula is:

acres = square feet / 43,560

Confirm that the CRS really uses feet, not meters, international feet, or a geographic degree unit. If the project area unit is already Acres, use $area rather than dividing again.

Convert hectares, square kilometers, or square meters to acres

Use the following expressions only when the source value has the stated unit:

Source value QGIS expression
Square meters $area / 4046.8564224 when $area is mยฒ
Square feet $area / 43560 when $area is ftยฒ
Hectares field "area_ha" * 2.47105381467
Square kilometers field "area_km2" * 247.105381467
Acres field "area_acres"

For a geometry-based hectares workflow, set the project area unit to hectares, calculate $area, and multiply the result by 2.47105381467. The unit-setting method is less error-prone than relying on the raw coordinate units.

Round acreage values responsibly

Use two decimals for ordinary property reporting:

round($area, 2)

when the project area unit is Acres, or:

round($area / 4046.8564224, 2)

when $area is in square meters. Retain more precision in a separate technical field if the analysis requires it, and round only for display or publication. The appropriate precision is limited by source geometry, survey quality, CRS, digitizing, and the purpose of the analysis.

A complete parcel-acreage workflow

For a property parcel layer, use this sequence:

  1. Load the authoritative parcel dataset.
  2. Confirm that the geometry type is polygon.
  3. Inspect Layer Properties > Source and verify the assigned CRS.
  4. Choose a suitable local or state projected CRS for the area and purpose.
  5. Reproject with Export > Save Features Asโ€ฆ if necessary; keep the original layer unchanged.
  6. Configure the project area unit and ellipsoid deliberately.
  7. Open the attribute table and create a Decimal number field named area_acres.
  8. Calculate either $area with the area unit set to Acres or $area / 4046.8564224 with the area unit set to Square meters.
  9. Round values for display, preferably in a separate display field if full precision must be preserved.
  10. Compare several results with the Measure Area tool or an independent reference.
  11. Check for invalid geometry and overlaps where those issues matter.
  12. Save the edits and export the finished layer with its acreage field.

Parcel data quality and legal property boundaries are determined by the authoritative provider, surveyor, and applicable recordsโ€”not by QGIS. A GIS acreage result should not automatically be treated as a legal survey.

Large geographic areas need a different strategy

A CRS suitable for a small parcel can be inappropriate for a state, country, or continent. Distortion generally grows as the analysis moves away from the projectionโ€™s intended area of use. For broad comparisons, an equal-area projection may be preferable. For a feature-by-feature area measurement across a very large extent, compare projected and ellipsoidal methods and document the selected approach.

Do not interpret a visually pleasing map as proof of accurate area. A web-map projection can be convenient for display and unsuitable for quantitative acreage. Use the CRS selectorโ€™s stated area of use and consult authoritative projection guidance before choosing a CRS for regional or national work. [3]

Planar versus geodesic area

Planar area treats coordinates on a projected plane and calculates area with Cartesian geometry. It is often efficient and appropriate for local work when the projection is well chosen.

Geodesic or ellipsoidal area accounts for the Earthโ€™s curved reference surface. It is useful when the geographic extent is large, when the source is in longitude/latitude, or when an ellipsoidal measurement is part of the required specification. QGIS measurement behavior depends on the project ellipsoid and area-unit settings, so these settings must be included in a reproducible method. [1] [3]

Neither method is automatically โ€œrightโ€ for every project. The correct method follows the analytical specification, extent, accuracy requirement, and data source.

Geometry validity and area errors

Invalid polygons can produce failed, unstable, or misleading measurements. Common issues include self-intersections, degenerate rings, duplicated vertices, duplicated geometries, gaps, slivers, and other topology problems.

Use Processing Toolbox geometry-checking tools to identify issues. Current QGIS documentation includes checks for degenerate polygons, duplicated geometries, and duplicated vertices, among other geometry checks. The Geometry Checker core plugin can also check and fix geometry validity. [7] [8]

A cautious process is:

  1. Run an appropriate geometry check and save its error output.
  2. Inspect flagged features and determine whether the error is real.
  3. Create a separate repaired copy rather than overwriting the source.
  4. Use Fix geometries or a targeted edit only when appropriate.
  5. Recalculate acreage and compare before/after values.

Geometry fixing changes the analytical geometry. It is not a neutral formatting operation, so review the result with the data owner.

Visualize acreage in QGIS

An acreage field is useful beyond a table. You can label polygons with values such as:

format_number("area_acres", 2) || ' ac'

You can use Graduated symbology based on area_acres to show small, medium, and large parcels. To highlight parcels larger than 10 acres, use a rule or filter expression:

"area_acres" > 10

If no permanent field exists and the project area unit is Acres, $area > 10 can be used instead. Label selectively when the map is dense; too many labels can obscure boundaries and reduce readability.

Create a professional acreage map

A finished map should communicate both the result and its limitations. In Print Layout, consider including polygon boundaries, a restrained set of acreage labels, a useful basemap or contextual layer, title, legend, scale bar, north arrow, data source, date, and CRS or measurement-method note. Include the field definition or a note such as โ€œArea calculated in QGIS using [CRS], [ellipsoid/planar method], and [date].โ€

Use graduated colors only when they reveal a meaningful pattern. Keep the legend understandable, avoid misleading class breaks, and do not imply legal boundary accuracy merely because the map looks polished.

Export the results

Save the edited vector layer in a format that preserves the new numeric field, such as GeoPackage, or use the format required by your data workflow. Use Export > Save Features Asโ€ฆ to create a copy, choose the output CRS deliberately, and confirm that area_acres is included.

For tabular delivery, export the attribute table or layer to CSV and retain the identifier linking each row to the polygon. Excel-compatible workflows can open CSV or use a suitable spreadsheet format where supported. For presentation, export the layout as PDF or PNG, but remember that a map image does not preserve editable geometry or attributes. Preserve the GIS layer separately.

Common mistakes and troubleshooting

โ€œMy acreage values are completely wrong.โ€

Check the assigned layer CRS, the project CRS, the project area unit, the ellipsoid, the conversion constant, invalid geometry, and whether you calculated an individual feature or a layer total. A geographic layer in degrees is a common warning sign.

โ€œMy result is in square meters, not acres.โ€

Divide square meters by 4,046.8564224, or set the project area unit to Acres and recalculate with $area. Do not divide if the result is already in acres.

โ€œMy area is 100 times too large.โ€

Look for a meters-versus-feet mistake, a square-versus-linear conversion error, a degree-based calculation, or an inappropriate CRS. Since area scales by the square of a linear unit, even a modest unit misunderstanding can create a large difference.

โ€œAnother GIS program gives a slightly different value.โ€

Possible causes include a different CRS, planar versus ellipsoidal measurement, different ellipsoid settings, geometry versions, datum transformations, vertex precision, selection state, or rounding. Compare the complete methods, not just the final number.

โ€œMy property acreage does not match the deed.โ€

A GIS-derived result can differ from legal records because of survey methods, parcel boundary sources, coordinate systems, data accuracy, boundary revisions, and geometry precision. Use the official record or a qualified survey process for legal purposes.

โ€œChanging the project CRS did not fix my calculation.โ€

A project CRS changes how layers are displayed and transformed on the fly. It does not necessarily reproject and save the layerโ€™s underlying geometry. Create a projected copy with Save Features Asโ€ฆ or a Processing reprojection algorithm, then calculate on the appropriate output. [3] [4]

Frequently asked questions

How do I calculate acres in QGIS?

Verify the polygon CRS and measurement settings, set the project area unit to Acres, and calculate $area in the Field Calculator. Alternatively, use square meters and divide by 4,046.8564224.

How does QGIS calculate polygon area?

QGIS calculates the current polygonโ€™s area according to the active geometry and measurement context. $area respects the project ellipsoid and area unit documented for the current QGIS expression system. [1]

What is the QGIS $area function?

$area is a geometry variable that returns the area of the current feature. It is not inherently synonymous with square meters; confirm the active area unit.

How do I convert square meters to acres in QGIS?

Use $area / 4046.8564224 when $area is configured to return square meters, or calculate the square-meter field first and divide that field by 4,046.8564224.

How do I calculate parcel acreage in QGIS?

Use an appropriate local or state projected CRS, create a Decimal number field named area_acres, calculate the configured $area expression, inspect several parcels, and save the output.

Why is my QGIS area calculation wrong?

The most common causes are an incorrect or geographic CRS, wrong area units, an accidental meters/feet conversion, invalid geometry, overlaps, or comparing planar and ellipsoidal methods.

What CRS should I use for calculating area?

Use a CRS appropriate to the project extent and purpose. Local or regional projected CRSs are often suitable for small-area work; an equal-area CRS or ellipsoidal method may be preferable for larger regions. There is no universal best CRS.

How do I calculate total acreage in QGIS?

Sum the area_acres field in the Statistics panel, or use a documented aggregate expression such as aggregate(layer := 'parcels', aggregate := 'sum', expression := "area_acres").

How do I calculate area for selected polygons?

Select the polygons, inspect the selected rows, and use field statistics to sum their acreage. Individual rows give individual acreage; the sum gives the selected-feature total.

Can QGIS calculate acreage automatically?

Yes. A field calculator expression, label expression, virtual field, or default-value expression can calculate acreage from polygon geometry. Configure and document the measurement settings first.

Can I calculate acres from square feet?

Yes. Use square feet divided by 43,560, for example round($area / 43560, 2) when $area is square feet.

Can I convert hectares to acres in QGIS?

Yes. Multiply hectares by 2.47105381467. If using geometry, configure QGIS to measure hectares or calculate a verified hectare field first.

Should I round acreage to two decimals?

Two decimals is practical for many reports, but precision should reflect the source data and purpose. Keep a higher-precision analytical field when needed and round only for presentation.

Is QGIS acreage accurate enough for property boundaries?

It may be suitable for GIS analysis when the data and method are appropriate, but it is not automatically a legal survey. Boundary authority and survey accuracy come from the source and applicable professional records.

What is the difference between geodesic and planar area?

Planar area uses a projected coordinate plane. Geodesic or ellipsoidal area accounts for Earth curvature. Select the method that matches the extent and analytical specification.

Accuracy and legal-use note

A GIS acreage calculation is an analytical measurement based on a particular geometry, CRS, measurement method, and set of settings. It should not automatically be treated as a legal survey or deed determination. Official acreage may differ because of survey methods, authoritative boundary sources, coordinate systems, dataset accuracy, revisions, and geometry precision.

[1] QGIS Documentation, List of functions, including $area and aggregate expressions: https://docs.qgis.org/latest/en/docs/user_manual/expressions/functions_list.html

[2] QGIS Documentation, Working with the Attribute Table, including Open Attribute Table, Open Field Calculator, selection, editing, and field statistics workflow: https://docs.qgis.org/latest/en/docs/user_manual/working_with_vector/attribute_table.html

[3] QGIS Documentation, Working with Projections, including layer CRS, project CRS, on-the-fly transformation, units, and CRS area of use: https://docs.qgis.org/latest/en/docs/user_manual/working_with_projections/working_with_projections.html

[4] QGIS Documentation, The Vector Properties Dialog, including the Source tab and the distinction between assigning a CRS and reprojecting data: https://docs.qgis.org/latest/en/docs/user_manual/working_with_vector/vector_properties.html

[5] QGIS Documentation, Creating Layers, including saving/exporting vector layers and choosing an output CRS: https://docs.qgis.org/latest/en/docs/user_manual/managing_data_source/create_layers.html

[6] QGIS Documentation, Vector Analysis, including field-statistics processing algorithms: https://docs.qgis.org/latest/en/docs/user_manual/processing_algs/qgis/vectoranalysis.html

[7] QGIS Documentation, Check Geometry, including checks for degenerate polygons, duplicated geometries, and duplicated vertices: https://docs.qgis.org/latest/en/docs/user_manual/processing_algs/qgis/checkgeometry.html

[8] QGIS Documentation, Geometry Checker Plugin, for checking and fixing geometry validity: https://docs.qgis.org/latest/en/docs/user_manual/plugins/core_plugins/plugins_geometry_checker.html

[9] U.S. Geological Survey, Conversion Factors (USGS Circular 1268), area conversion table: https://pubs.usgs.gov/circ/2004/circ1268/htdocs/text-conversion.html

Research and documentation check completed August 15, 2026. QGIS menu placement and minor labels may vary by release; consult the documentation for the exact version installed.

Gabby Jones

Typically replies within a minute

Hello, Welcome to the site. Please click below button for chating me throught WhatsApp.