fiona

Can't install Fiona on Windows

会有一股神秘感。 提交于 2019-12-17 21:10:32
问题 I've done a software on ubuntu, and I'm having several problems to run this software on Windows. My biggest issue point now is that I'm trying to install "fiona" - I have it alerady installed on my PIP packages - but for some reason it's not working. So I've tried to install it via setup download from the original repository. By following the rules: using phyton setup.py install I've already add some environment variables as: GDAL_DATA GDAL_DRIVER_PATH and beyond that I've add on variable

Python: problem to import fiona after other installation

送分小仙女□ 提交于 2019-12-12 22:41:25
问题 I don't why but I am now experiencing this issue on mac. I installed everything trough anaconda . Everything was working fine before a Restart of the system import fiona --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-8-4c762272c079> in <module> ----> 1 import fiona /anaconda3/lib/python3.6/site-packages/fiona/__init__.py in <module> 81 os.environ["PATH"] = os.environ["PATH"] + ";" + libdir 82 ---> 83

(Python) Rtree intersection and fiona questions

末鹿安然 提交于 2019-12-11 15:32:20
问题 I'm trying to create a function for an intersection where the input file is of some urban area, and a query box is used to create an output file that has the intersection containing just the buildings found in that query box. import matplotlib.pyplot as plt import matplotlib as mpl from mpl_toolkits.basemap import Basemap import fiona import fiona.crs import rtree input_file = 'se_england_clean.shp' out_file = 'se_england_out' file_index = 'Rtree_index_east.idx' query_box = [-0.0957870483,51

Fiona reading data

一个人想着一个人 提交于 2019-12-11 11:08:24
问题 I have problems concerning reading data using geopandas , but it seems the error is due to fiona according to this post I tried to reinstall fiona to 1.1.6 version, but still it does not work.. import fiona with fiona.open('taz.shp') as src: for feature in src: print feature --------------------------------------------------------------------------- IndexError Traceback (most recent call last) <ipython-input-31-b70513efc12b> in <module>() 1 import fiona 2 with fiona.open('taz.shp') as src: --

import error after clean install of fiona

我与影子孤独终老i 提交于 2019-12-08 20:01:20
问题 I installed fiona as follows: conda install -c conda-forge fiona It installed without any errors. When I try to import fiona , I get the following error: Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/name/anaconda3/lib/python3.6/site-packages/fiona/__init__.py", line 69, in <module> from fiona.collection import Collection, BytesCollection, vsi_path File "/home/name/anaconda3/lib/python3.6/site-packages/fiona/collection.py", line 9, in <module> from fiona

Installing geopandas on Python 2.6

房东的猫 提交于 2019-12-01 01:08:47
This is in continuation with my earlier question Geospatial Analytics in Python I started a new question to keep the 2 issues logically separate. I have trying to install geopandas on python 2.6 surprisingly, geopandas is already installed by GeoSeries doesn't work and it needs a package "Fiona". I followed the instruction provided here I installed the libraries required by searching and following the suggestions (including dev libraries thinking I'll get the .h files), I am however stuck with these two issues: https://github.com/Toblerity/Fiona after cloning from git and python setup.py

Installing geopandas on Python 2.6

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 20:33:00
问题 This is in continuation with my earlier question Geospatial Analytics in Python I started a new question to keep the 2 issues logically separate. I have trying to install geopandas on python 2.6 surprisingly, geopandas is already installed by GeoSeries doesn't work and it needs a package "Fiona". I followed the instruction provided here I installed the libraries required by searching and following the suggestions (including dev libraries thinking I'll get the .h files), I am however stuck