From 3c95bba3513bbf722ef537865a9caff0398ef9c3 Mon Sep 17 00:00:00 2001 From: ralfbrown Date: Fri, 18 Oct 2024 23:09:37 -0400 Subject: [PATCH 1/3] update variables page with new EXIF, GPS, and image-ID variables --- content/special-topics/variables.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/special-topics/variables.md b/content/special-topics/variables.md index 3c0284480e..a87dd7ace1 100644 --- a/content/special-topics/variables.md +++ b/content/special-topics/variables.md @@ -65,16 +65,25 @@ $(EXIF.TIME.REGIONAL) Exif time using user's preferred regional date format $(EXIF.ISO) Exif ISO value $(EXIF.EXPOSURE) Exif exposure $(EXIF.EXPOSURE.BIAS) Exif exposure bias +$(EXIF.EXPOSURE.PROGRAM) Exif exposure program set in camera $(EXIF.APERTURE) Exif aperture $(EXIF.CROP_FACTOR) Exif crop factor +$(EXIF.FLASH.ICON) flash symbol if Exif information says flash was fired, empty string if not $(EXIF.FOCAL.LENGTH) Exif focal length $(EXIF.FOCAL.LENGTH.EQUIV) Exif 35 mm equivalent focal length $(EXIF.FOCUS.DISTANCE) Exif focus distance +$(EXIF.METERING) Exif metering mode +$(EXIF.WHITEBALANCE) Exif white balance set in camera $(IMAGE.EXIF) basic exposure information from Exif data (aperture, exposure, ISO) +$(IMAGE.ID) the image id (note that this will be 0 during copy&import) +$(IMAGE.ID[n]) the image id (note that this will be 0 during copy&import), zero-padded to n digits +$(IMAGE.ID.NEXT) the next image id to be assigned (can be used during copy&import) +$(IMAGE.ID.NEXT[n]) the next image id to be assigned (can be used during copy&import), zero-padded to n digits $(LONGITUDE) longitude $(LATITUDE) latitude $(ELEVATION) elevation $(GPS.LOCATION) latitude, longitude, and elevation (omitting any values which are not set) +$(GPS.LOCATION.ICON) symbol to indicate that geolocation information is present, empty string if not $(STARS) star rating (text only) $(RATING.ICONS) star rating (using star characters) $(LABELS) colorlabels (color labels as text) From 0dd449a378befeb1dceb7b0abb92820229f45ffb Mon Sep 17 00:00:00 2001 From: ralfbrown Date: Fri, 18 Oct 2024 23:12:27 -0400 Subject: [PATCH 2/3] add missed EXIF.FLASH variable --- content/special-topics/variables.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/special-topics/variables.md b/content/special-topics/variables.md index a87dd7ace1..72dc999ef9 100644 --- a/content/special-topics/variables.md +++ b/content/special-topics/variables.md @@ -68,6 +68,7 @@ $(EXIF.EXPOSURE.BIAS) Exif exposure bias $(EXIF.EXPOSURE.PROGRAM) Exif exposure program set in camera $(EXIF.APERTURE) Exif aperture $(EXIF.CROP_FACTOR) Exif crop factor +$(EXIF.FLASH) Exif flash setting $(EXIF.FLASH.ICON) flash symbol if Exif information says flash was fired, empty string if not $(EXIF.FOCAL.LENGTH) Exif focal length $(EXIF.FOCAL.LENGTH.EQUIV) Exif 35 mm equivalent focal length From 4a64d7447c07261257043fc98162d8c9768ed4a6 Mon Sep 17 00:00:00 2001 From: ralfbrown Date: Fri, 18 Oct 2024 23:22:50 -0400 Subject: [PATCH 3/3] add IMAGE.TAGS.HIERARCHY and some missed aliases --- content/special-topics/variables.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/special-topics/variables.md b/content/special-topics/variables.md index 72dc999ef9..9bfa184894 100644 --- a/content/special-topics/variables.md +++ b/content/special-topics/variables.md @@ -73,16 +73,24 @@ $(EXIF.FLASH.ICON) flash symbol if Exif information says flash was fired $(EXIF.FOCAL.LENGTH) Exif focal length $(EXIF.FOCAL.LENGTH.EQUIV) Exif 35 mm equivalent focal length $(EXIF.FOCUS.DISTANCE) Exif focus distance +$(EXIF.LENS) Exif lens name +$(EXIF.MAKER) Exif camera maker $(EXIF.METERING) Exif metering mode +$(EXIF.MODEL) Exif camera model $(EXIF.WHITEBALANCE) Exif white balance set in camera $(IMAGE.EXIF) basic exposure information from Exif data (aperture, exposure, ISO) $(IMAGE.ID) the image id (note that this will be 0 during copy&import) $(IMAGE.ID[n]) the image id (note that this will be 0 during copy&import), zero-padded to n digits $(IMAGE.ID.NEXT) the next image id to be assigned (can be used during copy&import) $(IMAGE.ID.NEXT[n]) the next image id to be assigned (can be used during copy&import), zero-padded to n digits +$(IMAGE.TAGS) tags list (Xmp.dc.Subject), with any hierarchy flattened +$(IMAGE.TAGS.HIERARCHY) tags list (Xmp.dc.Subject), preserving hierarchy $(LONGITUDE) longitude $(LATITUDE) latitude $(ELEVATION) elevation +$(GPS.ELEVATION) elevation +$(GPS.LATITUDE) latitude +$(GPS.LONGITUDE) longitude $(GPS.LOCATION) latitude, longitude, and elevation (omitting any values which are not set) $(GPS.LOCATION.ICON) symbol to indicate that geolocation information is present, empty string if not $(STARS) star rating (text only)