Anhänge verwenden¶
In QField kann ein Feld mit der Funktion Anhänge verwendet werden, um:
- Fotos zu zeigen und aufzunehmen
- Anhören und Aufnehmen von Soundclips
- Zuhören und Aufnehmen von Soundclips
- Links zu externen Dateien wie PDFs oder Dokumenten anzeigen
To configure the Widget, please refer to the Attributes Form Documentation
Eine Reihe von Bildern zu einem Objekt hinzufügen¶
Vorbereitung am Schreibtisch
Dem Objekt können ein oder mehrere Bilder hinzugefügt werden. Hier ein Beispiel, wie Sie vorgehen können.
Tabellen¶
Es ist notwendig, zwei Tabellen einzurichten. Eine Tabelle, in der die Objekte gespeichert werden, und eine mit einer Liste von Bildern.
Bienenstock¶
Feld | Typ |
---|---|
id |
Text (UUID) |
geometry |
Geometrie |
... |
Bienenstock_Bilder¶
Feld | Typ |
---|---|
id |
Text (UUID) |
bienenstock_id |
Text (UUID) |
pfad |
Text |
... |
Beziehungen¶
Erstelle eine Beziehung mit:
apiary
Referenced layerid
Referenced fieldapiary_picture
Referencing layerapiary_id
Referencing fieldstrength
Composition
Bedienelemente¶
Bienenstock¶
Set the default value of the field id to uuid()
or use the UUID Generator widget. No need to show it in the form.
Set the relation widget to many to one relation and add the relation to the form
Bienenstock Bilder¶
Set the widget type of the field path to Attachment and add it to the form
Zeichnen und Skizzieren¶
QField have an in-app drawing and sketching functionality enabling you to directly sketch over and annotate images captured while in the field as well as drawing on top of a blank canvas or over a template.
Geotagging¶
Feldarbeit
Die interne Kamera von QField markiert Ihre Bilder automatisch mit Geotags.
Informationen über den Standort und die Richtung der Bilder werden daher in die Bilddatei eingebettet.
Note
While with older Android versions it was possible to use other apps like the amazing OpenCamera app for taking pictures and preserving EXIF information from there, this is no longer with recent Android versions. If you enable Use native Camera in the settings you will not be able to preserve EXIF information.
Fetching Geotags (EXIF) from the image file into the attribute table¶
Vorbereitung am Schreibtisch
Sometimes you might be interested in automatically storing Geotags such as the latitude, longitude, orientation, etc. This information is also known as EXIF tags.
To store the EXIF information, follow these steps:
- Add an attribute per EXIF tag in the table that contains the pictures.
- In the pictures form, configure the default value of each attribute to the corresponding EXIF expression See QGIS EXIF function, and make sure Apply on update is activated.
- The EXIF tags that QField can capture are listed in the QGIS documentation (link above). However, this list might slightly varies depending on the mobile characteristics.
- Capturing EXIF tags requires accessing the full physical path of the picture. Be sure to reflect this in the QGIS expression.
For example, the expression
exif(@project_folder + '/' + "path", 'Exif.Image.Orientation')
retrieves the orientation of the picture stored in path. For more tags visit the QField EXIF reference documentation and the exiv library documentation. - Completed! QField's now capture and store the EXIF tags in the pictures table while taking pictures.
Maximale Bildgröße¶
Vorbereitung am Schreibtisch
The advanced settings allow rescaling the photos to a maximum width/height in QFieldSync plugin > Project configuration
Konfigurierbarer Anhang-Pfad¶
Vorbereitung am Schreibtisch
QFieldSync provides the possibility to configure the path of picture attachments.
- Go to QFieldSync plugin > Layers Properties
- Wählen Sie die Ebene, das Feld und konfigurieren Sie den Ausdruck
Use expressions to specify the path of the attachments. By default, pictures are saved into the "DCIM" folder, audio are saved into the "audio" folder and videos are saved into "video" with a timestamp as name.
Additional directories can be synchronized with pictures or other attachments. Extra paths can be configured in Attachment directories. All paths are relative to the project directory.
Anmerkung
Für diese Funktionsmöglichkeit ist QGIS 3.14 oder höher erforderlich