diff --git a/scripts/wordlist.txt b/scripts/wordlist.txt index 4ebe907a..6d46530a 100644 --- a/scripts/wordlist.txt +++ b/scripts/wordlist.txt @@ -78,6 +78,7 @@ Lebefure Leica LGPL LGPLv +LineString LTR Lutra Lutra's @@ -94,6 +95,8 @@ MVT Mercedes Mergin Multiline +MultiLine +MultiPoint MultiPolygon NDK NMEA diff --git a/src/gis/features/index.md b/src/gis/features/index.md index 2cb7d7f7..c049ae3f 100644 --- a/src/gis/features/index.md +++ b/src/gis/features/index.md @@ -32,6 +32,30 @@ Here are some practical tips for creating and maintaining layers in your project - **Add new layers to your project as separate GeoPackages**. Do not add a new table to your existing GeoPackage that contains a survey layer. Just to be safe, it is better to have one GeoPackage for each of your survey layers. - Use **GeoTIFF** format for your raster files or store them in a separate GeoPackage database +### Adding layers + +You can add new layers to your project in QGIS. + +![QGIS Data source manager toolbar - Create GeoPackage](./qgis-dsm-toolbar.webp "QGIS Data source manager toolbar - Create GeoPackage") + +Create a **new GeoPackage layer**: +- Save the **Database** to your project [folder](../../manage/project/#mergin-maps-project-folder) on your computer (to ensure it is synchronised with the project) +- Choose the **Geometry type**. + - For spatial layers, select *MultiPoint*, *MultiLine*, *MultiPolygon* (for features with multipart geometry) or *Point*, *LineString*, *Polygon*. + - Select *No Geometry* for a non-spatial layer (table) +- Set the **Coordinate reference system** +- Add **fields** with appropriate data types + +![QGIS New GeoPackage Layer](./qgis-new-geopackage-layer.webp "QGIS New GeoPackage Layer") + +The new layer is added to the project. Now you can set up its symbology, attributes form or other settings. + +:::tip More about adding GeoPackage layers +Our tutorial [Creating a Project in QGIS](../../tutorials/creating-a-project-in-qgis/#add-layers) includes detailed steps on how to add a new layer to the project. + +A comprehensive description of creating a GeoPackage layer can be found in . +::: + ### Layer symbology The same symbology as defined in the QGIS project will be used in . However, does not include all the SVG markers that are available within QGIS. Therefore, if you are using SVG markers for your layer styling, ensure those are copied to the project folder. diff --git a/src/gis/features/qgis-dsm-toolbar.webp b/src/gis/features/qgis-dsm-toolbar.webp new file mode 100644 index 00000000..8b0f1fee Binary files /dev/null and b/src/gis/features/qgis-dsm-toolbar.webp differ diff --git a/src/gis/features/qgis-dsm-toolbar.xcf b/src/gis/features/qgis-dsm-toolbar.xcf new file mode 100644 index 00000000..46b599f8 Binary files /dev/null and b/src/gis/features/qgis-dsm-toolbar.xcf differ diff --git a/src/gis/features/qgis-new-geopackage-layer.webp b/src/gis/features/qgis-new-geopackage-layer.webp new file mode 100644 index 00000000..e24fd8dd Binary files /dev/null and b/src/gis/features/qgis-new-geopackage-layer.webp differ diff --git a/src/gis/features/qgis-new-geopackage-layer.xcf b/src/gis/features/qgis-new-geopackage-layer.xcf new file mode 100644 index 00000000..41bab8dc Binary files /dev/null and b/src/gis/features/qgis-new-geopackage-layer.xcf differ