Importing Data and Interpolation #626
Rahul-GeoPhysics
started this conversation in
General
Replies: 1 comment 4 replies
-
Hello @Rahul-GeoPhysics, can you share your csv file so I can take a direct look. that would be easiest if possible. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am having issues while loading my csv file into Gempy. I have X,Y,Z, Density values in the spreadsheet, that I want to load in, interpolate, grid and then export as another csv (that can store the interpolated values). But when I am trying to load in the data using the following commands and trying to see the surfaces, it doesn't show anything.
import gempy as gp
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import os
geo_model=gp.create_model("model_1")
gp.init_data(geo_model,[-124.8,-120.0,40.0,49.2,-101000.0,3000.0],[28,55,15],path="density_from_Brocher_2005_meters.csv",default_values=True)
geo_model.surfaces
Beta Was this translation helpful? Give feedback.
All reactions