Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking the OpenDroneMap GCP format! #2

Open
hornig opened this issue Jun 15, 2019 · 1 comment
Open

Checking the OpenDroneMap GCP format! #2

hornig opened this issue Jun 15, 2019 · 1 comment
Labels
help wanted Extra attention is needed

Comments

@hornig
Copy link
Contributor

hornig commented Jun 15, 2019

gcp-osm/main.py

Lines 69 to 78 in 46377aa

# OpenDroneMap GCP
## header
if odm_gcp_header == 0:
# this is still to understood, why ODM just allows one utm zone and that is in the header!
f.write("WGS84 UTM " + str(location_utm[2]) + str(location_utm[3]) + "\n")
odm_gcp_header = 1
## line by line saving the coordinates
f.write((str(location_utm[0]) + " " + str(location_utm[1]) + " " + item[3] + " "
+ str(points[1][0]) + " " + str(points[1][1]) + " " + file.split(os.sep)[-1]) + "\n")

how to handle GCPs in different, neighbouring utm zones?
is the separator within the line a "space" or a "tab"?
shall we allow an input from my_gcp_list without altitude?

src: https://github.com/OpenDroneMap/ODM/wiki/Running-OpenDroneMap

@hornig hornig added the help wanted Extra attention is needed label Jun 16, 2019
@hornig
Copy link
Contributor Author

hornig commented Oct 18, 2021

we now made progress and included one gcp_list format.
could someone with ODM test it? :)
https://github.com/aerospaceresearch/gcp-osm/blob/master/gcposm/gcp_list_writer.py#L7

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant