Online Links:
Online Links:
| Range of values | |
|---|---|
| Minimum: | 132 |
| Maximum: | 165 |
| Units: | Julian days |
| Resolution: | 1 |
| Range of values | |
|---|---|
| Minimum: | 2023 |
| Maximum: | 2023 |
| Units: | years |
| Resolution: | 1 |
| Range of values | |
|---|---|
| Minimum: | 41.503336 |
| Maximum: | 41.575500 |
| Units: | decimal degrees |
| Resolution: | 0.000001 |
| Range of values | |
|---|---|
| Minimum: | -70.479597 |
| Maximum: | -70.291408 |
| Units: | decimal degrees |
| Resolution: | 0.000001 |
> exiftool -P -csv="images_nav.csv" -overwrite_original *.tifThe GPS information was not recorded in the photo navigation file for two drifts on the first survey day (the second drift at site 2023-001-001 and the drift at site 2023-001-002). The photos from these two drifts that were selected for publication were geotagged in a later process step.
> exiftool -csv -filename -EXIF:GPSTimeStamp -EXIF:GPSDateStamp -GPSLatitude -GPSLongitude -n *.tif > out.csv A spreadsheet was then made to concatenate the new filename using the parsed GPS information in Microsoft Excel for Mac (version 16.16.27).The images were then renamed by running a shell script to rename the original image names with the new filenames. The survey log noted several sites that included the wrong site number in the original filenames, so these filenames were corrected. Data sources used in this process:
> exiftool -P -csv="2023-001-001a-and-002_nav.csv" -overwrite_original *.tifData sources used in this process:
> exiftool -P -overwrite_original -all= -tagsfromfile @ -gps:all -EXIF:ModifyDate -overwrite_original *.jpgData sources used in this process:
> exiftool -P -m "-XMP:PreservedFileName<Filename" -IPTC:Credit="U.S. Geological Survey" -IPTC:Contact="WHSC_data_contact@usgs.gov" -EXIF:Copyright="Public Domain" -XMP:UsageTerms="Unless otherwise stated, all data, metadata and related materials are considered to satisfy the quality standards relative to the purpose for which the data were collected. Although these data and associated metadata have been reviewed for accuracy and completeness and approved for release by the U.S. Geological Survey (USGS), no warranty expressed or implied is made regarding the display or utility of the data for other purposes, nor on all computer systems, nor shall the act of distribution constitute any such warranty." -EXIF:ImageDescription="https://cmgds.marine.usgs.gov/fan_info.php?fan=2023-001-FA; Photograph of the sea floor in Nantucket Sound, Massachusetts, from USGS field activity 2023-001-FA" -XMP:AttributionURL="https://doi.org/10.5066/P14NWTX8" -EXIF:GPSAreaInformation="position post-processed from nearby GPS" -EXIF:GPSMapDatum="EPSG:4326 (WGS 84)" "-EXIF:DateTimeOriginal<Composite:GPSDateTime" -EXIF:Artist="Woods Hole Coastal and Marine Science Center (WHCMSC) Sea Floor Mapping Group (SFMG)" -EXIF:Make="FLIR" -EXIF:Model="Blackfly S BFS-PGE-50S5M-C" -overwrite_original *.jpgCommand to duplicate metadata from the Exif and IPTC formats to XMP using ExifTool:
> exiftool -P -m "-XMP-photoshop:Credit<IPTC:Credit" "-XMP-iptcCore:CreatorWorkEmail<IPTC:Contact" "-XMP-dc:Rights<EXIF:Copyright" "-XMP-dc:Description<EXIF:ImageDescription" "-XMP-exif:all<GPS:all" "-XMP-exif:GPSLatitude<Composite:GPSLatitude" "-XMP-exif:GPSLongitude<Composite:GPSLongitude" "-XMP-exif:GPSDateTime<Composite:GPSDateTime" "-XMP-photoshop:DateCreated<EXIF:DateTimeOriginal" "-XMP-xmp:ModifyDate<EXIF:ModifyDate" "-XMP-dc:Creator<EXIF:Artist" "-XMP-tiff:Make<EXIF:Make" "-XMP-tiff:Model<EXIF:Model" -overwrite_original *.jpgThe following metadata tags were populated in the image headers using the above ExifTool commands:
Artist: Woods Hole Coastal and Marine Science Center (WHCMSC) Sea Floor Mapping Group (SFMG) Copyright: Public Domain DateTimeOriginal: duplicated using the composite of Exif GPSDateStamp and Exif GPSTimeStamp GPSAreaInformation: position post-processed from nearby GPS GPSMapDatum: EPSG:4326 (WGS 84) ImageDescription: https://cmgds.marine.usgs.gov/fan_info.php?fan=2023-001-FA; Photograph of the sea floor in Nantucket Sound, Massachusetts, from USGS field activity 2023-001-FA Make: FLIR Model: Blackfly S BFS-PGE-50S5M-CIPTC tags and the information used to populate these tags:
Contact: WHSC_data_contact@usgs.gov Credit: U.S. Geological SurveyXMP tags and the information used to populate these tags:
AttributionURL: https://doi.org/10.5066/P14NWTX8 Creator: duplicated from Exif Artist CreatorWorkEmail: duplicated from IPTC Contact Credit: duplicated from IPTC Credit DateCreated: duplicated from Exif DateTimeOriginal Description: duplicated from Exif ImageDescription GPSAreaInformation: duplicated from Exif GPSAreaInformation by copying all the Exif GPS tags to the same-named tags in XMP (-XMP-exif:all<GPS:all) GPSDateTime: duplicated using the composite of Exif GPSDateStamp and Exif GPSTimeStamp GPSLatitude: duplicated using the composite of Exif GPSLatitude and Exif GPSLatitudeRef GPSLongitude: duplicated using the composite of Exif GPSLongitude and Exif GPSLongitudeRef GPSMapDatum: duplicated from Exif GPSMapDatum by copying all the Exif GPS tags to the same-named tags in XMP (-XMP-exif:all<GPS:all) Make: duplicated from Exif Make Model: duplicated from Exif Model ModifyDate: duplicated from Exif ModifyDate PreservedFileName: original image filename, which is unique for each image Rights: duplicated from Exif Copyright UsageTerms: Unless otherwise stated, all data, metadata and related materials are considered to satisfy the quality standards relative to the purpose for which the data were collected. Although these data and associated metadata have been reviewed for accuracy and completeness and approved for release by the U.S. Geological Survey (USGS), no warranty expressed or implied is made regarding the display or utility of the data for other purposes, nor on all computer systems, nor shall the act of distribution constitute any such warranty.To extract the geotagging and survey information (except for the duplicated tags) from the image metadata using ExifTool, the following command can be used (tested with ExifTool version 11.86):
> exiftool -csv -filename -EXIF:GPSTimeStamp -EXIF:GPSDateStamp -GPSLatitude -GPSLongitude -n -IPTC:Credit -IPTC:Contact -EXIF:Copyright -XMP:UsageTerms -EXIF:ImageDescription -XMP:AttributionURL -EXIF:GPSAreaInformation -EXIF:GPSMapDatum -EXIF:Artist *.jpg > out.csvThe "-csv" option writes the information to a CSV file. The "-n" option formats the latitude and longitude as signed decimal degrees. Please note that the above command was tested on macOS; Windows users may need to use "exiftool.exe" instead of "exiftool." Data sources used in this process:
> exiftool -P "-EXIF:ModifyDate<FileModifyDate" -csv="vidframes_nav.csv" -overwrite_original *.jpgData sources used in this process:
> exiftool -P -m "-XMP:PreservedFileName<Filename" -IPTC:Credit="U.S. Geological Survey" -IPTC:Contact="WHSC_data_contact@usgs.gov" -EXIF:Copyright="Public Domain" -XMP:UsageTerms="Unless otherwise stated, all data, metadata and related materials are considered to satisfy the quality standards relative to the purpose for which the data were collected. Although these data and associated metadata have been reviewed for accuracy and completeness and approved for release by the U.S. Geological Survey (USGS), no warranty expressed or implied is made regarding the display or utility of the data for other purposes, nor on all computer systems, nor shall the act of distribution constitute any such warranty." -EXIF:ImageDescription="https://cmgds.marine.usgs.gov/fan_info.php?fan=2023-001-FA; Video frame grab of the sea floor in Nantucket Sound, Massachusetts, from USGS field activity 2023-001-FA" -XMP:AttributionURL="https://doi.org/10.5066/P14NWTX8" -EXIF:GPSAreaInformation="position post-processed from nearby GPS" -EXIF:GPSMapDatum="EPSG:4326 (WGS 84)" "-EXIF:DateTimeOriginal<Composite:GPSDateTime" -EXIF:Artist="Woods Hole Coastal and Marine Science Center (WHCMSC) Sea Floor Mapping Group (SFMG)" -EXIF:Make="DeepSea Power & Light" -EXIF:Model="HD Multi SeaCam" -overwrite_original *.jpg The following command was then run to duplicate metadata from the Exif and IPTC formats to XMP using ExifTool: exiftool -P -m "-XMP-photoshop:Credit<IPTC:Credit" "-XMP-iptcCore:CreatorWorkEmail<IPTC:Contact" "-XMP-dc:Rights<EXIF:Copyright" "-XMP-dc:Description<EXIF:ImageDescription" "-XMP-exif:all<GPS:all" "-XMP-exif:GPSLatitude<Composite:GPSLatitude" "-XMP-exif:GPSLongitude<Composite:GPSLongitude" "-XMP-exif:GPSDateTime<Composite:GPSDateTime" "-XMP-photoshop:DateCreated<EXIF:DateTimeOriginal" "-XMP-xmp:ModifyDate<EXIF:ModifyDate" "-XMP-dc:Creator<EXIF:Artist" "-XMP-tiff:Make<EXIF:Make" "-XMP-tiff:Model<EXIF:Model" -overwrite_original *.jpgThe same information that was incorporated into the FLIR photos' metadata was populated in the headers of the video frame grabs with the following exceptions for the Exif tags: ImageDescription: https://cmgds.marine.usgs.gov/fan_info.php?fan=2023-001-FA; Video frame grab of the sea floor in Nantucket Sound, Massachusetts, from USGS field activity 2023-001-FA Make: DeepSea Power & Light Model: HD Multi SeaCam To extract the geotagging and survey information (except for DateTimeOriginal, ModifyDate, and the duplicated tags) from the image metadata using ExifTool, the following command can be used (tested with ExifTool version 11.86):
> exiftool -csv -filename -EXIF:GPSTimeStamp -EXIF:GPSDateStamp -GPSLatitude -GPSLongitude -n -IPTC:Credit -IPTC:Contact -EXIF:Copyright -XMP:UsageTerms -EXIF:ImageDescription -XMP:AttributionURL -EXIF:GPSAreaInformation -EXIF:GPSMapDatum -EXIF:Artist *.jpg > out.csvThe "-csv" option writes the information to a CSV file. The "-n" option formats the latitude and longitude as signed decimal degrees. Please note that the above command was tested on macOS; Windows users may need to use "exiftool.exe" instead of "exiftool." Data sources used in this process:
> exiftool -csv -f -GPSTimeStamp -GPSDateStamp -GPSLatitude -GPSLongitude -n *.jpg > out.csvMicrosoft Excel for Mac (version 16.88) was used to rename the field names for the filename (PICNAME), GPS time (GPSTIME), GPS date (DATE), latitude (LAT), and longitude (LONG); and add new fields for the camera (CAMERA), Julian day of collection (JD), year of collection (YEAR), site number (FIELD_NO), survey ID (FA_ID), sampling device used to collect the image (DEVICE_ID), and survey vessel (VEHICLE_ID). A shapefile was created from the bottom image locations CSV file using QGIS (version 3.10.9). The CSV file was added as a delimited text layer and then saved as an Esri shapefile vector layer. Data sources used in this process:
Photos: GPS information was recorded with a program called **Marfac (no version number), which saved the photo filename and navigation data when the camera was remotely triggered. Videos: GPS data were overlaid using a Proteus-V Pro video overlay device. This device likely truncated and rounded the GPS coordinates, causing them to not exactly match the photo's coordinates, even though both came from the same DGPS receiver.
| Access_Constraints | No access constraints. Please see 'Distribution Information' for details. |
|---|---|
| Use_Constraints | These data are marked with a Creative Commons CC0 1.0 Universal License. These data are in the public domain and do not have any use constraints. Users are advised to read the dataset's metadata thoroughly to understand appropriate use and data limitations. |
| Data format: | This dataset contains a shapefile and CSV file of bottom image locations and geotagged JPEG images of the sea floor collected by the U.S. Geological Survey in Nantucket Sound Massachusetts, in May and June 2023. The transfer size of the data in a Shapefile zip file is 0.1 MB. in format Shapefile (version QGIS (version 3.10.9)) Esri Shapefile Size: 0.01 |
|---|---|
| Network links: |
https://www.sciencebase.gov/catalog/item/68badfc6d4be0209bab077d9 https://www.sciencebase.gov/catalog/file/get/68badfc6d4be0209bab077d9 https://doi.org/10.5066/P14NWTX8 |
| Data format: | This dataset contains a shapefile and CSV file of bottom image locations and geotagged JPEG images of the sea floor collected by the U.S. Geological Survey in Nantucket Sound Massachusetts, in May and June 2023. The transfer size of the csv files is 0.02 MB. in format Comma-delimited text (version Microsoft Excel 2016 for Mac) Comma Separated Values (CSV) text file Size: 0.02 |
|---|---|
| Network links: |
https://www.sciencebase.gov/catalog/item/68badfc6d4be0209bab077d9 https://www.sciencebase.gov/catalog/file/get/68badfc6d4be0209bab077d9 https://doi.org/10.5066/P14NWTX8 |
| Data format: | This dataset contains a shapefile and CSV file of bottom image locations and geotagged JPEG images of the sea floor collected by the U.S. Geological Survey in Nantucket Sound Massachusetts, in May and June 2023. The transfer size of the data in a zip file is 481 MB. The authoritative copy of the images are those that reside on the USGS Coastal and Marine Hazards and Resources Program's (CMHRP) Imagery Data System (IDS). in format JPEG Size: 481 |
|---|---|
| Network links: |
https://www.sciencebase.gov/catalog/item/68badfc6d4be0209bab077d9 https://www.sciencebase.gov/catalog/file/get/68badfc6d4be0209bab077d9 https://doi.org/10.5066/P14NWTX8 https://doi.org/10.5066/P13JVE5X |