gempy
中的read_csv
函数用于导入csv格式的数据到gempy
中,其中包括地层层位、属性、边界等信息。
gempy.read_csv(file_path: str, **kwargs)
file_path
(str): csv文件的路径。kwargs
: 使用pandas.read_csv()函数所需的所有参数应该作为关键字参数传递。import gempy as gp
# 导入地层数据
gp.read_csv('path/to/formation.csv', delimiter=';')
# 导入边界数据
gp.read_csv('path/to/faults.csv', skiprows=2, index_col=0)
# 导入堆栈数据
gp.read_csv('path/to/pandas.csv', sep='\t', header=0, index_col=1)
此函数接受所有pandas.read_csv()的参数作为关键字参数。
该函数没有返回值,但是它将在gempy
中保存导入的数据。
pandas.errors.ParserError
异常。