advance building of hugin script
This commit is contained in:
parent
8c9ee8da84
commit
2bfd1119e8
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="Encoding">
|
<component name="Encoding">
|
||||||
<file url="file://$PROJECT_DIR$/php/cndp/cndp_calcul_temps_parole.csv" charset="ISO-8859-1" />
|
<file url="file://$PROJECT_DIR$/cndp/cndp_calcul_temps_parole.csv" charset="ISO-8859-1" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
BIN
hugin-gopro-fusion/img/essai/GB015732.JPG
Executable file
BIN
hugin-gopro-fusion/img/essai/GB015732.JPG
Executable file
Binary file not shown.
After Width: | Height: | Size: 2.2 MiB |
BIN
hugin-gopro-fusion/img/essai/GF015732.JPG
Executable file
BIN
hugin-gopro-fusion/img/essai/GF015732.JPG
Executable file
Binary file not shown.
After Width: | Height: | Size: 2.3 MiB |
@ -16,7 +16,7 @@ const moment = require("moment");
|
|||||||
|
|
||||||
let dossier_pto_output = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/output_pto";
|
let dossier_pto_output = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/output_pto";
|
||||||
|
|
||||||
let absolutePath = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img";
|
let absolutePath = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/essai";
|
||||||
let folder = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/"
|
let folder = "/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/"
|
||||||
let subFolder = "essai/"
|
let subFolder = "essai/"
|
||||||
let mini_arguments: any = minimist(process.argv.slice(2))
|
let mini_arguments: any = minimist(process.argv.slice(2))
|
||||||
@ -28,8 +28,8 @@ if (mini_arguments['folder']) {
|
|||||||
|
|
||||||
function findMinMaxNumberOfPhotos(filesList: Array<string>) {
|
function findMinMaxNumberOfPhotos(filesList: Array<string>) {
|
||||||
return {
|
return {
|
||||||
min: '080096',
|
min: '015506',
|
||||||
max: '080096',
|
max: '015821',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,18 +53,38 @@ function makeBashScriptHugin(minmax: any) {
|
|||||||
// let currentNumber = ii;
|
// let currentNumber = ii;
|
||||||
let currentNumber = '080096';
|
let currentNumber = '080096';
|
||||||
let ptoContent = makePto(absolutePath, currentNumber);
|
let ptoContent = makePto(absolutePath, currentNumber);
|
||||||
|
let ptoFileName = `merging_${currentNumber}.pto`
|
||||||
|
let stitchedFileName = `assemblage_${currentNumber}`
|
||||||
|
|
||||||
|
let ptoPath = `${dossier_pto_output}/${ptoFileName}`
|
||||||
|
scriptsContent += '\n\n# capture n°' + currentNumber
|
||||||
|
scriptsContent += '\nhugin_executor' +
|
||||||
|
' ' + ptoPath + ' ' +
|
||||||
|
'--stitching ' +
|
||||||
|
'--prefix=' + stitchedFileName +
|
||||||
|
' -t=6'
|
||||||
|
scriptsContent += '\n # complétion des données gps depuis une des photos assemblées' +
|
||||||
|
'\nexiftool ' +
|
||||||
|
'-TagsFromFile ' +
|
||||||
|
absolutePath + '/GF' + currentNumber + '.JPG ' +
|
||||||
|
'-DateTimeOriginal ' +
|
||||||
|
'-SubSecTimeOriginal' +
|
||||||
|
' -Make="Tykayn" ' + dossier_pto_output + '/' + stitchedFileName + '.jpg ' +
|
||||||
|
'-overwrite_original ' + dossier_pto_output + '/' + stitchedFileName + '.jpg '
|
||||||
|
|
||||||
console.log('ptoContent', ptoContent)
|
console.log('ptoContent', ptoContent)
|
||||||
writeFile(`merging_${currentNumber}.pto`, ptoContent)
|
writeFile(ptoFileName, ptoContent)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
writeFile('hugin_executor.sh', scriptsContent)
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function makePto(absolutePath: string, currentNumber: string) {
|
function makePto(absolutePath: string, currentNumber: string) {
|
||||||
|
|
||||||
let front_picture_name = absolutePath + 'GF' + currentNumber + '.JPG';
|
let front_picture_name = absolutePath + '/GF' + currentNumber + '.JPG';
|
||||||
let back_picture_name = absolutePath + 'GB' + currentNumber + '.JPG';
|
let back_picture_name = absolutePath + '/GB' + currentNumber + '.JPG';
|
||||||
|
|
||||||
|
|
||||||
console.log('front_picture_name', front_picture_name)
|
console.log('front_picture_name', front_picture_name)
|
||||||
@ -172,6 +192,13 @@ function writeFile(fileName: string, fileContent: any) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let scriptsContent = '#!/bin/bash' +
|
||||||
|
'\n# éxécuter tous les fichiers PTO\n';
|
||||||
|
|
||||||
|
function scriptHugin(ptoPath: string) {
|
||||||
|
scriptsContent += `hugin_executor main.pto --stitching --prefix=assemblage -t=6`
|
||||||
|
}
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
|
|
||||||
let filesOfFolder = getGoproFiles(folder + subFolder)
|
let filesOfFolder = getGoproFiles(folder + subFolder)
|
||||||
|
8
hugin-gopro-fusion/output_pto/hugin_executor.sh
Normal file
8
hugin-gopro-fusion/output_pto/hugin_executor.sh
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# éxécuter tous les fichiers PTO
|
||||||
|
|
||||||
|
|
||||||
|
# capture n°080096
|
||||||
|
hugin_executor /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/output_pto/merging_080096.pto --stitching --prefix=assemblage_080096 -t=6
|
||||||
|
# complétion des données gps depuis une des photos assemblées
|
||||||
|
exiftool -TagsFromFile /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/essai/GF080096.JPG -DateTimeOriginal -SubSecTimeOriginal -Make="Tykayn" /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/output_pto/assemblage_080096.jpg -overwrite_original /home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/output_pto/assemblage_080096.jpg
|
@ -6,9 +6,9 @@ m i0
|
|||||||
|
|
||||||
# image lines
|
# image lines
|
||||||
#-hugin autoCenterCrop=1 cropFactor=3.66667
|
#-hugin autoCenterCrop=1 cropFactor=3.66667
|
||||||
i w3104 h3000 f2 v187.621680193473 Ra0.929120004177094 Rb-2.97991991043091 Rc0.832589983940125 Rd-1.6331000328064 Re0.223350003361702 Eev12.97168 Er1 Eb1 r0 p0 y0 TrX0 TrY0 TrZ0 Tpy0 Tpp0 j0 a0 b0 c0 d0 e0 g0 t0 Va1 Vb0 Vc0 Vd0 Vx0 Vy0 S56,3048,0,3000 Vm5 n"/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/imgGB080096.JPG"
|
i w3104 h3000 f2 v187.621680193473 Ra0.929120004177094 Rb-2.97991991043091 Rc0.832589983940125 Rd-1.6331000328064 Re0.223350003361702 Eev12.97168 Er1 Eb1 r0 p0 y0 TrX0 TrY0 TrZ0 Tpy0 Tpp0 j0 a0 b0 c0 d0 e0 g0 t0 Va1 Vb0 Vc0 Vd0 Vx0 Vy0 S56,3048,0,3000 Vm5 n"/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/essai/GB080096.JPG"
|
||||||
#-hugin autoCenterCrop=1 cropFactor=3.66666674613953
|
#-hugin autoCenterCrop=1 cropFactor=3.66666674613953
|
||||||
i w3104 h3000 f2 v200.312016860549 Ra0.929120004177094 Rb-2.97991991043091 Rc0.832589983940125 Rd-1.6331000328064 Re0.223350003361702 Eev12.86747 Er1 Eb1 r-0.321229885118998 p0.498637821558678 y-179.883320935885 TrX0 TrY0 TrZ0 Tpy0 Tpp0 j0 a0 b0 c0 d0 e0 g0 t0 Va1 Vb0 Vc0 Vd0 Vx0 Vy0 S56,3048,0,3000 Vm5 n"/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/imgGF080096.JPG"
|
i w3104 h3000 f2 v200.312016860549 Ra0.929120004177094 Rb-2.97991991043091 Rc0.832589983940125 Rd-1.6331000328064 Re0.223350003361702 Eev12.86747 Er1 Eb1 r-0.321229885118998 p0.498637821558678 y-179.883320935885 TrX0 TrY0 TrZ0 Tpy0 Tpp0 j0 a0 b0 c0 d0 e0 g0 t0 Va1 Vb0 Vc0 Vd0 Vx0 Vy0 S56,3048,0,3000 Vm5 n"/home/poule/encrypted/stockage-syncable/www/development/html/scripts/hugin-gopro-fusion/img/essai/GF080096.JPG"
|
||||||
|
|
||||||
|
|
||||||
# specify variables that should be optimized
|
# specify variables that should be optimized
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# apply exif data to photos
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2020:09:04 15:13:09" \
|
|
||||||
-AllDates="2020:09:04 15:13:09" \
|
|
||||||
-MediaCreateDate="2020:09:04 15:13:09" \
|
|
||||||
-MediaModifyDate="2020:09:04 15:13:09" \
|
|
||||||
-TrackCreateDate=="2020:09:04 15:13:09" \
|
|
||||||
-TrackModifyDate=="2020:09:04 15:13:09" \
|
|
||||||
-GPSLongitude="2.12523291" \
|
|
||||||
-GPSLatitude="48.61844552" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249/3596249_cdc67_60a0f9cf4c766.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2020:09:04 15:13:17" \
|
|
||||||
-AllDates="2020:09:04 15:13:17" \
|
|
||||||
-MediaCreateDate="2020:09:04 15:13:17" \
|
|
||||||
-MediaModifyDate="2020:09:04 15:13:17" \
|
|
||||||
-TrackCreateDate=="2020:09:04 15:13:17" \
|
|
||||||
-TrackModifyDate=="2020:09:04 15:13:17" \
|
|
||||||
-GPSLongitude="2.1253338" \
|
|
||||||
-GPSLatitude="48.61841874" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249/3596249_f3ccd_60a0f9cda58b5.jpg"
|
|
||||||
|
|
||||||
geovisio upload --api-url https://panoramax.openstreetmap.fr "/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249"
|
|
@ -1,706 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# apply exif data to photos
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2020:09:04 15:13:09" \
|
|
||||||
-AllDates="2020:09:04 15:13:09" \
|
|
||||||
-MediaCreateDate="2020:09:04 15:13:09" \
|
|
||||||
-MediaModifyDate="2020:09:04 15:13:09" \
|
|
||||||
-TrackCreateDate=="2020:09:04 15:13:09" \
|
|
||||||
-TrackModifyDate=="2020:09:04 15:13:09" \
|
|
||||||
-GPSLongitude="2.12523291" \
|
|
||||||
-GPSLatitude="48.61844552" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249/3596249_cdc67_60a0f9cf4c766.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2020:09:04 15:13:17" \
|
|
||||||
-AllDates="2020:09:04 15:13:17" \
|
|
||||||
-MediaCreateDate="2020:09:04 15:13:17" \
|
|
||||||
-MediaModifyDate="2020:09:04 15:13:17" \
|
|
||||||
-TrackCreateDate=="2020:09:04 15:13:17" \
|
|
||||||
-TrackModifyDate=="2020:09:04 15:13:17" \
|
|
||||||
-GPSLongitude="2.1253338" \
|
|
||||||
-GPSLatitude="48.61841874" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249/3596249_f3ccd_60a0f9cda58b5.jpg"
|
|
||||||
|
|
||||||
geovisio upload --api-url https://panoramax.openstreetmap.fr "/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596249"
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:00" \
|
|
||||||
-AllDates="2021:05:16 12:47:00" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:00" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:00" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:00" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:00" \
|
|
||||||
-GPSLongitude="2.4423378" \
|
|
||||||
-GPSLatitude="49.38164853" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_03061922d4f7dc8355fd50c7860634c6.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:04" \
|
|
||||||
-AllDates="2021:05:16 12:47:04" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:04" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:04" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:04" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:04" \
|
|
||||||
-GPSLongitude="2.44232888" \
|
|
||||||
-GPSLatitude="49.38164187" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_12896859d3cfc099a77ae4702081bd7c.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:08" \
|
|
||||||
-AllDates="2021:05:16 12:47:08" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:08" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:08" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:08" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:08" \
|
|
||||||
-GPSLongitude="2.44235777" \
|
|
||||||
-GPSLatitude="49.38163444" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_12add40b10915a7eeb5a5840052da55b.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:12" \
|
|
||||||
-AllDates="2021:05:16 12:47:12" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:12" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:12" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:12" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:12" \
|
|
||||||
-GPSLongitude="2.44241163" \
|
|
||||||
-GPSLatitude="49.38163422" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_1b62a0c40a42cdeb5872b9028e13e764.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:16" \
|
|
||||||
-AllDates="2021:05:16 12:47:16" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:16" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:16" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:16" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:16" \
|
|
||||||
-GPSLongitude="2.44243977" \
|
|
||||||
-GPSLatitude="49.38167687" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_2b97e8196ddd8347a25c797874e0abf3.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:20" \
|
|
||||||
-AllDates="2021:05:16 12:47:20" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:20" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:20" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:20" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:20" \
|
|
||||||
-GPSLongitude="2.44246262" \
|
|
||||||
-GPSLatitude="49.38172384" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_2da3e5708352e6e7a80ee3c3efc481dc.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:24" \
|
|
||||||
-AllDates="2021:05:16 12:47:24" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:24" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:24" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:24" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:24" \
|
|
||||||
-GPSLongitude="2.44251731" \
|
|
||||||
-GPSLatitude="49.38174494" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_312a6b466af1879b18e6554cf3392b9a.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:28" \
|
|
||||||
-AllDates="2021:05:16 12:47:28" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:28" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:28" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:28" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:28" \
|
|
||||||
-GPSLongitude="2.44257749" \
|
|
||||||
-GPSLatitude="49.38176573" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_36bfd8bedca19bb49ecbf7ce61301b75.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:32" \
|
|
||||||
-AllDates="2021:05:16 12:47:32" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:32" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:32" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:32" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:32" \
|
|
||||||
-GPSLongitude="2.44259287" \
|
|
||||||
-GPSLatitude="49.38178068" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_38608abb52bd0eb10b46f143030a9adc.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:36" \
|
|
||||||
-AllDates="2021:05:16 12:47:36" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:36" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:36" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:36" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:36" \
|
|
||||||
-GPSLongitude="2.44261655" \
|
|
||||||
-GPSLatitude="49.38179505" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_386600eb1c749d60710cf26026870b31.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:40" \
|
|
||||||
-AllDates="2021:05:16 12:47:40" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:40" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:40" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:40" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:40" \
|
|
||||||
-GPSLongitude="2.44263419" \
|
|
||||||
-GPSLatitude="49.38183583" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_3e4ead9ddc00dd4297dc22e0544e1890.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:44" \
|
|
||||||
-AllDates="2021:05:16 12:47:44" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:44" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:44" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:44" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:44" \
|
|
||||||
-GPSLongitude="2.44266923" \
|
|
||||||
-GPSLatitude="49.38189171" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_3e92f1d0e4024be1e887097b7c09b000.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:48" \
|
|
||||||
-AllDates="2021:05:16 12:47:48" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:48" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:48" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:48" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:48" \
|
|
||||||
-GPSLongitude="2.4426815" \
|
|
||||||
-GPSLatitude="49.38194804" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_3fc2cdb1cedf06537543ea956cc70da6.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:52" \
|
|
||||||
-AllDates="2021:05:16 12:47:52" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:52" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:52" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:52" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:52" \
|
|
||||||
-GPSLongitude="2.44263839" \
|
|
||||||
-GPSLatitude="49.38199804" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_40362d092d0ea8721c706c00bc47614b.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:47:56" \
|
|
||||||
-AllDates="2021:05:16 12:47:56" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:47:56" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:47:56" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:47:56" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:47:56" \
|
|
||||||
-GPSLongitude="2.44256895" \
|
|
||||||
-GPSLatitude="49.38202536" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_432d0b17a4d016e61c0ef28229d399e7.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:00" \
|
|
||||||
-AllDates="2021:05:16 12:48:00" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:00" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:00" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:00" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:00" \
|
|
||||||
-GPSLongitude="2.44250876" \
|
|
||||||
-GPSLatitude="49.38206474" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_5099bad433f55b78584e0ee6fe3ea002.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:04" \
|
|
||||||
-AllDates="2021:05:16 12:48:04" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:04" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:04" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:04" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:04" \
|
|
||||||
-GPSLongitude="2.44244234" \
|
|
||||||
-GPSLatitude="49.38210817" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_54f99bc0920df8a402fc613f519b0fae.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:08" \
|
|
||||||
-AllDates="2021:05:16 12:48:08" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:08" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:08" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:08" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:08" \
|
|
||||||
-GPSLongitude="2.44237179" \
|
|
||||||
-GPSLatitude="49.38214717" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_559c29bb7f04dab413df3899b10511fb.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:12" \
|
|
||||||
-AllDates="2021:05:16 12:48:12" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:12" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:12" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:12" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:12" \
|
|
||||||
-GPSLongitude="2.4423058" \
|
|
||||||
-GPSLatitude="49.38219033" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_57466eec1c698b6246b5de4f9c88c18a.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:16" \
|
|
||||||
-AllDates="2021:05:16 12:48:16" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:16" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:16" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:16" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:16" \
|
|
||||||
-GPSLongitude="2.44223813" \
|
|
||||||
-GPSLatitude="49.38222645" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_7b0f72a988db65db3764bc5bb2aec532.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:20" \
|
|
||||||
-AllDates="2021:05:16 12:48:20" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:20" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:20" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:20" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:20" \
|
|
||||||
-GPSLongitude="2.44216503" \
|
|
||||||
-GPSLatitude="49.38225645" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_7e8e85bfde720bd120414e9eaf469d23.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:24" \
|
|
||||||
-AllDates="2021:05:16 12:48:24" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:24" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:24" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:24" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:24" \
|
|
||||||
-GPSLongitude="2.44208964" \
|
|
||||||
-GPSLatitude="49.38227906" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_859a3849682f215e78bb1e716ecb5909.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:28" \
|
|
||||||
-AllDates="2021:05:16 12:48:28" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:28" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:28" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:28" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:28" \
|
|
||||||
-GPSLongitude="2.44201197" \
|
|
||||||
-GPSLatitude="49.3823047" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_86c981443b17b168b69817af88f1df91.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:32" \
|
|
||||||
-AllDates="2021:05:16 12:48:32" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:32" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:32" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:32" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:32" \
|
|
||||||
-GPSLongitude="2.44199799" \
|
|
||||||
-GPSLatitude="49.38233859" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_8a0830f6ec7d80bb8de45029fa96a5ee.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:36" \
|
|
||||||
-AllDates="2021:05:16 12:48:36" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:36" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:36" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:36" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:36" \
|
|
||||||
-GPSLongitude="2.44195293" \
|
|
||||||
-GPSLatitude="49.38236793" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_8be3d282b269c2aa3bbb622e83143a2f.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:40" \
|
|
||||||
-AllDates="2021:05:16 12:48:40" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:40" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:40" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:40" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:40" \
|
|
||||||
-GPSLongitude="2.4418661" \
|
|
||||||
-GPSLatitude="49.38233501" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_928b080525416934363338558a39144b.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:44" \
|
|
||||||
-AllDates="2021:05:16 12:48:44" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:44" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:44" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:44" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:44" \
|
|
||||||
-GPSLongitude="2.44181217" \
|
|
||||||
-GPSLatitude="49.3823147" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_9ad064c63e08601f67e9bccae14880a6.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:48" \
|
|
||||||
-AllDates="2021:05:16 12:48:48" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:48" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:48" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:48" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:48" \
|
|
||||||
-GPSLongitude="2.4416886" \
|
|
||||||
-GPSLatitude="49.38234423" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_a9604b8fe752b20766d5bd75b4e382d6.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:52" \
|
|
||||||
-AllDates="2021:05:16 12:48:52" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:52" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:52" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:52" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:52" \
|
|
||||||
-GPSLongitude="2.4416223" \
|
|
||||||
-GPSLatitude="49.38239105" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_aa96ec87316e6ac4b9d4405e17bbcd5a.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:48:56" \
|
|
||||||
-AllDates="2021:05:16 12:48:56" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:48:56" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:48:56" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:48:56" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:48:56" \
|
|
||||||
-GPSLongitude="2.44158877" \
|
|
||||||
-GPSLatitude="49.38241558" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_ae1644115366455bb7373873671e69b8.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:00" \
|
|
||||||
-AllDates="2021:05:16 12:49:00" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:00" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:00" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:00" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:00" \
|
|
||||||
-GPSLongitude="2.44153381" \
|
|
||||||
-GPSLatitude="49.38245006" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_b1628ea6d532e7adc51ade2c75f5c364.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:04" \
|
|
||||||
-AllDates="2021:05:16 12:49:04" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:04" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:04" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:04" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:04" \
|
|
||||||
-GPSLongitude="2.44141959" \
|
|
||||||
-GPSLatitude="49.38246467" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_bb17e0b094820f523bea373cce31469c.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:08" \
|
|
||||||
-AllDates="2021:05:16 12:49:08" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:08" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:08" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:08" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:08" \
|
|
||||||
-GPSLongitude="2.44129883" \
|
|
||||||
-GPSLatitude="49.3824578" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_bed29586cd78a0ca8f0e138fc92f3fe0.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:12" \
|
|
||||||
-AllDates="2021:05:16 12:49:12" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:12" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:12" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:12" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:12" \
|
|
||||||
-GPSLongitude="2.44121831" \
|
|
||||||
-GPSLatitude="49.38242542" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_bfc56e20577cf1a76072171308b8d843.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:16" \
|
|
||||||
-AllDates="2021:05:16 12:49:16" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:16" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:16" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:16" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:16" \
|
|
||||||
-GPSLongitude="2.44114537" \
|
|
||||||
-GPSLatitude="49.38237702" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_c3153793fb82146a42425ea51050ca90.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:20" \
|
|
||||||
-AllDates="2021:05:16 12:49:20" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:20" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:20" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:20" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:20" \
|
|
||||||
-GPSLongitude="2.44110977" \
|
|
||||||
-GPSLatitude="49.38233584" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_c4321b28939bae9f28d192260358bf04.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:24" \
|
|
||||||
-AllDates="2021:05:16 12:49:24" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:24" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:24" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:24" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:24" \
|
|
||||||
-GPSLongitude="2.44105224" \
|
|
||||||
-GPSLatitude="49.38232832" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_c6f99671e36edbd0b230bd33b81581bc.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:28" \
|
|
||||||
-AllDates="2021:05:16 12:49:28" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:28" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:28" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:28" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:28" \
|
|
||||||
-GPSLongitude="2.44099405" \
|
|
||||||
-GPSLatitude="49.38236271" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_ca172ebcf92b2543d6046e2eed7a9501.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:32" \
|
|
||||||
-AllDates="2021:05:16 12:49:32" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:32" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:32" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:32" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:32" \
|
|
||||||
-GPSLongitude="2.44093588" \
|
|
||||||
-GPSLatitude="49.38238855" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_ccc4193d2a5b163e79db165c3b193031.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:36" \
|
|
||||||
-AllDates="2021:05:16 12:49:36" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:36" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:36" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:36" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:36" \
|
|
||||||
-GPSLongitude="2.44087192" \
|
|
||||||
-GPSLatitude="49.38242418" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_d02e69fad6bbd51b89915548c29c2a91.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:40" \
|
|
||||||
-AllDates="2021:05:16 12:49:40" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:40" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:40" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:40" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:40" \
|
|
||||||
-GPSLongitude="2.4408203" \
|
|
||||||
-GPSLatitude="49.38247756" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_d2fc657075d7d61467e9d62c4dab0bd3.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:44" \
|
|
||||||
-AllDates="2021:05:16 12:49:44" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:44" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:44" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:44" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:44" \
|
|
||||||
-GPSLongitude="2.44075708" \
|
|
||||||
-GPSLatitude="49.38250859" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_d7a7de6516dac49810b63d0b883f3e08.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:48" \
|
|
||||||
-AllDates="2021:05:16 12:49:48" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:48" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:48" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:48" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:48" \
|
|
||||||
-GPSLongitude="2.44068648" \
|
|
||||||
-GPSLatitude="49.38252845" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_d83dff3468120916de477c86b34c8a25.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:52" \
|
|
||||||
-AllDates="2021:05:16 12:49:52" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:52" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:52" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:52" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:52" \
|
|
||||||
-GPSLongitude="2.44061585" \
|
|
||||||
-GPSLatitude="49.382561" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_daa3a10964b558500f17e127efda7946.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:49:56" \
|
|
||||||
-AllDates="2021:05:16 12:49:56" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:49:56" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:49:56" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:49:56" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:49:56" \
|
|
||||||
-GPSLongitude="2.4405436" \
|
|
||||||
-GPSLatitude="49.38258577" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_e1ad3bba5a5b26ce4e516e49a295032a.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:00" \
|
|
||||||
-AllDates="2021:05:16 12:50:00" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:00" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:00" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:00" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:00" \
|
|
||||||
-GPSLongitude="2.44045928" \
|
|
||||||
-GPSLatitude="49.38260609" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_e99b7eabcec0e0adf1136e7bf1ff349e.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:04" \
|
|
||||||
-AllDates="2021:05:16 12:50:04" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:04" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:04" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:04" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:04" \
|
|
||||||
-GPSLongitude="2.44039101" \
|
|
||||||
-GPSLatitude="49.3826283" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_eed752a3c1e9e73eeed12eca597a90c3.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:08" \
|
|
||||||
-AllDates="2021:05:16 12:50:08" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:08" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:08" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:08" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:08" \
|
|
||||||
-GPSLongitude="2.44034081" \
|
|
||||||
-GPSLatitude="49.38265489" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_f1a1471c9472e6b9a3546c343712e14f.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:12" \
|
|
||||||
-AllDates="2021:05:16 12:50:12" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:12" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:12" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:12" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:12" \
|
|
||||||
-GPSLongitude="2.44027959" \
|
|
||||||
-GPSLatitude="49.38268232" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_f2871aa45eae066c8004079f1cae0141.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:16" \
|
|
||||||
-AllDates="2021:05:16 12:50:16" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:16" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:16" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:16" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:16" \
|
|
||||||
-GPSLongitude="2.44019889" \
|
|
||||||
-GPSLatitude="49.38269711" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_f5afc2ff287cd7e4aa69c9161ce847ab.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:20" \
|
|
||||||
-AllDates="2021:05:16 12:50:20" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:20" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:20" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:20" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:20" \
|
|
||||||
-GPSLongitude="2.4401293" \
|
|
||||||
-GPSLatitude="49.3827269" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_f601ee3566128684db4653dbac7c0b53.jpg"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
exiftool -overwrite_original \
|
|
||||||
-GPSDateTime="2021:05:16 12:50:24" \
|
|
||||||
-AllDates="2021:05:16 12:50:24" \
|
|
||||||
-MediaCreateDate="2021:05:16 12:50:24" \
|
|
||||||
-MediaModifyDate="2021:05:16 12:50:24" \
|
|
||||||
-TrackCreateDate=="2021:05:16 12:50:24" \
|
|
||||||
-TrackModifyDate=="2021:05:16 12:50:24" \
|
|
||||||
-GPSLongitude="2.44008261" \
|
|
||||||
-GPSLatitude="49.38276884" \
|
|
||||||
"/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253/3596253_f809d8c2a45f822001c941e5f6853aa8.jpg"
|
|
||||||
|
|
||||||
geovisio upload --api-url https://panoramax.openstreetmap.fr "/home/poule/encrypted/stockage-syncable/photos/imagerie kartaview carto tel/kartaview_export_storage/share2tykayn/photo/3596253"
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user