Replies: 2 comments
-
if geo_data:
m, epsg = geo_data.get_crs_transformation()
if CRS_TO_WCS:
crs_to_wcs(msp, m)
else:
wcs_to_crs(msp, m)
else:
print("No geo reference data available.") |
Beta Was this translation helpful? Give feedback.
0 replies
-
OK. Thank you for the prompt response with the corrections.
Your code revisions worked perfectly.
…On 20-01-2024 10:45 PM, Manfred Moitzi wrote:
if geo_data:
m, epsg = geo_data.get_crs_transformation()
if CRS_TO_WCS:
crs_to_wcs(msp, m)
else:
wcs_to_crs(msp, m)
else:
print("No geo reference data available.")
--
Reply to this email directly, view it on GitHub [1], or unsubscribe
[2].
You are receiving this because you authored the thread.Message ID:
***@***.***>
Links:
------
[1]
#1012 (comment)
[2]
https://github.com/notifications/unsubscribe-auth/AC7B7AN236LFHGOPE5AQT5LYPSMQBAVCNFSM6AAAAABCDRJYHCVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DCOJVGQ2DE
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone, I used the following code to test the DXF file used in the geo_interface example:
Upon executing the above code, I received the following error message:
I then attempted the following code to see if it would fix the error, but I received the following message:
What corrections need to be made in the above code?
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions