gempy.create_data

gempy.create_data(project_name: str = 'default_project', extent: Optional[Union[list, numpy.ndarray]] = None, resolution: Optional[Union[list, numpy.ndarray]] = None, **kwargs)gempy.core.model.Project[source]

Create a gempy.core.model.Project object and initialize some of the main functions such as:

  • Grid gempy.core.data.GridClass: To regular grid.

  • read_csv: SurfacePoints and orientations: From csv files

  • set_values to default

Parameters
  • project_name (str) –

  • extent (list or array) – [x_min, x_max, y_min, y_max, z_min, z_max]. Extent for the visualization of data and default of for the grid class.

  • resolution (list or array) – [nx, ny, nz]. Resolution for the visualization of data and default of for the grid class.

  • **kwargs

Keyword:

path_i: Path to the data bases of surface_points. Default os.getcwd(), path_o: Path to the data bases of orientations. Default os.getcwd()

Returns

Project