You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using python 3.8.10 on a Mac pro machine, when I run this under Jupyter-lab I got the results:
import fiona
src_crs = 'epsg:4326'
dst_crs = 'EPSG:4269'
print(fiona.transform.transform(src_crs, dst_crs, [-81.457076],[41.462266]))
([-81.457076], [41.462266])
but if I put that in a file,
python try.py:
I got:
([inf], [inf])
What is going on????? I tried python 3.7.9, it is fine, but is it really fine????
Mac OS Monterey 12.3.1
-->
Expected behavior and actual behavior.
For example: I expected to read 10 features from a file and an exception occurred
on the 3rd.
Steps to reproduce the problem.
For example: a script with required data.
Operating system
For example: Mac OS X 10.12.3.
Fiona and GDAL version and provenance
For example: the 1.7.10.post1 manylinux1 wheel installed from PyPI using pip version 9.0.1.
This discussion was converted from issue #1088 on April 14, 2022 20:43.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using python 3.8.10 on a Mac pro machine, when I run this under Jupyter-lab I got the results:
import fiona
src_crs = 'epsg:4326'
dst_crs = 'EPSG:4269'
print(fiona.transform.transform(src_crs, dst_crs, [-81.457076],[41.462266]))
([-81.457076], [41.462266])
but if I put that in a file,
python try.py:
I got:
([inf], [inf])
What is going on????? I tried python 3.7.9, it is fine, but is it really fine????
Mac OS Monterey 12.3.1
-->
Expected behavior and actual behavior.
For example: I expected to read 10 features from a file and an exception occurred
on the 3rd.
Steps to reproduce the problem.
For example: a script with required data.
Operating system
For example: Mac OS X 10.12.3.
Fiona and GDAL version and provenance
For example: the 1.7.10.post1 manylinux1 wheel installed from PyPI using pip version 9.0.1.
For example: GDAL 2.1.0 installed via Homebrew
Beta Was this translation helpful? Give feedback.
All reactions