Hello,
I prepare csv log file for my dataset.
It look like this
IMG_2883.JPG,45.3594005,26.712383,431.32,255.82,11.31,-1.95
IMG_2884.JPG,45.3593339,26.7119093,434.13,262.28,2.12,-1.96
IMG_2885.JPG,45.3592974,26.7114327,432.92,267.82,0.48,-2.77
And call loadReference() with it. And coordinats added as well.
But by default coordinates in csv file assumed as local coordinates.
How I can set other CS, e.g. EPSG:4326?
Part of code below:
crs = PhotoScan.CoordinateSystem("EPSG::3857")
doc = PhotoScan.app.document
doc.open(project_path)
chunk = PhotoScan.app.document.addChunk()
chunk.addPhotos(images_list)
camera = chunk.cameras[0]
chunk.loadReference(out_csv, format=PhotoScan.ReferenceFormatCSV, columns="nxyzabc", delimiter=",", group_delimiters=False, skip_rows=0)
doc.save(project_path, chunks = doc.chunks)
Tanks