- View and update photo metadata, timezone, and geotag/coordinates/location
- Able to batch update photos in bulk based on extensive array of filters
- Built to geotag and time date images correctly to work with Google Photos
- Supports viewing equirectangular/360 photos
- Dark mode option
This app is only meant to be run locally on your own computer
Node.js backend, Vue.js frontend. Runs on Mac/Unix systems, not tested on Windows.
Please make backups of all photos before using the app and editing metadata, in case of unexpected errors.
- Download the latest release based on your system
- Extract the zip to a new directory
- (Highly recommended, not required) Add your Bing maps API key to the
config.properties
file - Run the
photo-metadata-updater
file, you will see a console window open - In a browser, navigate to http://localhost:8000
If you want to contribute, instructions for local setup for development is in the wiki
- Enter full system path to the directory of photos you wish to edit in the text box in the header, then press Enter
- All JPG and/or PNG images will load into the list on the side bar
- Select a photo from the list to view the photo, a map of where it was taken, and the photo metadata
- Edit the metadata fields as needed, these fields include:
- Date: Local date from when the photo was taken
- Time: Local time from when the photo was taken - NOT UTC Time
- Timezone Offset: The timezone offset between the local time and UTC time
- (e.g. Hawaii offset is -10 hours, and it is written as -10:00 using
+/-HH:MM
notation)
- (e.g. Hawaii offset is -10 hours, and it is written as -10:00 using
- Elevation: Elevation in meters of where photo was taken (negative or positive, including decimal values)
- Latitude: GPS latitude of where the photo was taken
- Longitude: GPS longitude of where the photo was taken
- Click 'Save' to save the metadata
Tip 1: Click the search icon next to timezone offset field to calculate timezone offset based on the GPS and date/time information
Tip 2: You can either click on the map itself to select new coordinates, or enter them manually in the text boxes
Tip 3: You can paste coordinates in decimal degrees format "latitude, longitude" in either the latitude or longitude fields, and the app will automatically detect this and populate both coordinates values for you automatically
Tip 4: You can disable warnings, or change to dark mode in the options menu (top left corner)
This application writes to the following EXIF metadata fields:
Create Date
(local time)Date/Time Original
(local time)Modify Date
(local time)GPS Altitude
(elevation in meters)GPS Altitude Ref
(Above/Below Sea Level)GPS Date/Time
(UTC datetime)GPS Date
(UTC date)GPS Time
(UTC time)GPS Latitude
(decimal degrees)GPS Longitude
(decimal degrees)GPS Latitude Ref
(N or S)GPS Longitude Ref
(W or E)Offset Time
(timezone offset - corresponds toModify Date
)Offset Time Original
(timezone offset - corresponds toDate/Time Original
)Offset Time Digitized
(timezone offset - corresponds toCreate Date
)
- Exiftool - Tool used to view and edit photo metadata
- Vue.js - Frontend framework
- Vuetify - Vue UI library based on Google's material design
- Vite - Frontend tooling
- Pannellum - Equirectangular image projection viewer
- SSE - Eventsource SSE alternative
- Bing Maps - Map view and timezones API
- Axios - HTTP Client
- Express.js - Web framework for Node apps
- pkg - Enables packaging node apps into executables