使用地球和通配符打开文件

发布于 2025-02-10 19:43:29 字数 323 浏览 0 评论 0原文

我正在尝试使用Glob和通配符从文件夹中读取一组文件,但是Python不会从我的目录中读取_file。
我的代码看起来像这样:

from glob import glob
import geopandas as gpd

extent_dir = glob( '/Users/extents' + '/extent_' + '*.shp' ) 
extent = gpd.read_file(extent_dir)

我需要使用通配符,因为我将添加带有iDfferent名称的文件。该文件名看起来像这样: lating_1234354.shp

I am trying to read a group of files from a folder using glob and wildcards, however python won't read_file from my directory.
My code looks like this:

from glob import glob
import geopandas as gpd

extent_dir = glob( '/Users/extents' + '/extent_' + '*.shp' ) 
extent = gpd.read_file(extent_dir)

I need to use the wild card as I will be adding files with idfferent names. the file name looks something like this : extent_1234354.shp

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文