Skip to content

Instantly share code, notes, and snippets.

View UstymUkhman's full-sized avatar
Coffee is never too much.

Ustym Ukhman UstymUkhman

Coffee is never too much.
View GitHub Profile
@UstymUkhman
UstymUkhman / coordsReader.php
Last active January 15, 2024 08:30
PHP script to read coordinates from geolocated photos.
#!/usr/bin/php
<?php
set_time_limit(0);
ini_set('memory_limit', -1);
if (!isset($argv[1]) || $argv[1] == '--help') {
$mssg = "\n\nTYPE: php coordsReader.php <path to a ZIP with photos> <path to a folder where unzip>\n\n";
getMessage($mssg, 33);
return;