From 07ca626ca8952c661e716b58e4658b286594b95f Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Sat, 11 Apr 2020 00:43:29 +0200 Subject: [PATCH] Unified mentions for Exif/ITPC/XMP tags. Finalized 0.3.2 release. --- CHANGELOG.md | 4 +++- Readme.md | 2 +- functions.py | 2 +- rad_tag.py | 7 +++---- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e53c476..754f50b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Added - tba +## [0.3.2] - 2020-04-12 + +### Added - Added additional Exif and ITPC data fields for radiation comment. ## [0.3.1] - 2020-04-03 diff --git a/Readme.md b/Readme.md index f7ff306..cc3b7c1 100644 --- a/Readme.md +++ b/Readme.md @@ -56,7 +56,7 @@ usage: rad_tag.py [-h] [-si SIFACTOR] [-tz Timezone] [-d] [-g GPX] [-o OUTDIR] CSV Photo [Photo ...] A unix-tyle tool that extracts GPS and/or radiation data from GPX/CSV files -and writes them into the Exif tags of given photos. +and writes them into the Exif/ITPC/XMP tags of given photos. positional arguments: CSV Geiger counter history file in CSV format. diff --git a/functions.py b/functions.py index d067ec0..072eda1 100644 --- a/functions.py +++ b/functions.py @@ -171,7 +171,7 @@ class Match: class Exif: ''' - Converts, compiles and writes Exif-Tags from given arguemnts. + Converts, compiles and writes Exif/ITPC/XMP-Tags from given arguments. Arguments: photo: file name of photo to modify diff --git a/rad_tag.py b/rad_tag.py index a60dd7b..c0e4a01 100755 --- a/rad_tag.py +++ b/rad_tag.py @@ -2,9 +2,8 @@ # -*- coding: utf-8 -*- ''' Iterates over a bunch of .jpg or .cr2 files and matches -DateTimeOriginal from Exif tag to DateTime in a csv log -of a GeigerMuellerCounter and writes its value to the UserComment -Exif tag in µS/h ''' +DateTimeOriginal from Exif tags to DateTime in a csv log +of a GeigerMuellerCounter and writes its value to Exif/ITPC/XMP tags in µS/h ''' import csv import argparse @@ -25,7 +24,7 @@ from functions import Radiation, Photo, Match, Exif, Output parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter, description='''A unix-tyle tool that extracts GPS and/or radiation data from GPX/CSV files and writes - them into the Exif tags of given photos.''') + them into the Exif/ITPC/XMP tags of given photos.''') parser.add_argument('-si', '--sifactor', type=float, default=0.0065, help='Factor to multiply recorded CPM with.') parser.add_argument('-tz', '--timezone', type=str, metavar='Timezone', default='utc',