read_sf_exif | R Documentation |
Read EXIF data from folder of images.
read_sf_exif( path = NULL, filetype = NULL, bbox = NULL, sort = "lon", tags = NULL, ... ) write_exif( path = NULL, filetype = NULL, title = NULL, author = NULL, date = NULL, keywords = NULL, args = NULL, overwrite = TRUE ) write_exif_keywords( path, filetype = NULL, key_list, key_col = "name", keywords = NULL, join = NULL, overwrite = TRUE )
path |
A path to folder of one or more files with EXIF location metadata. |
filetype |
The file extension or file type; defaults to |
bbox |
Optional bounding box to crop returned file (excluding images with location data outside the bounding box). If bbox is provided the returned data will match the crs of the bbox. |
sort |
Column name for variable to sort by. Currently supports "lon" (default), "lat", or "filename" |
tags |
Optional list of EXIF tags to read from files. Must include GPS tags to create an sf object. |
... |
Additional EXIF tags to pass to exiftoolr::exif_read |
title |
Title to add to file metadata with exiftoolr, Default: |
author |
Author to add to file metadata with exiftoolr, Default: |
date |
Date to add to file metadata with exiftoolr (not currently
working), Default: |
keywords |
Keyword(s) added to file metadata with with exiftoolr,
Default: |
args |
Alternate arguments passed to |
overwrite |
If TRUE, overwrite any existing EXIF metadata present in the provided fields; defaults to TRUE |
key_list |
List of sf objects with features with keywords, e.g. boundaries |
key_col |
Column name in key_list with the values to use for keywords. |
join |
geometry predicate function; defaults to |
NA
Other read_write:
make_filename()
,
read_sf_ext()
read_sf_exif( path = system.file("extdata/photos", package = "overedge"), filetype = "jpeg" )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.