Skip to main content

LocationWiseResult

GitHub source

LocationWiseResult

evo.compute.tasks.geostatistics.location_wise.LocationWiseResult

Result of a location-wise task.

Provides access to the multiple computed statistics attributes.

message

message: str

A message describing what happened in the task.

target_name

target_name: str

The name of the target object.

target_reference

target_reference: str

The reference URL to the target object.

attribute_names

attribute_names: list[str]

Names of all attributes created by the task.

schema

schema: ObjectSchema

The schema type of the target object.

get_target_object

get_target_object() -> BaseObject

Load and return the target geoscience object.

Returns: The typed geoscience object (e.g., Regular3DGrid)

to_dataframe

to_dataframe(*columns: str) -> pd.DataFrame

Get the task results as a DataFrame.

Args: columns: Optional column names to include. If omitted, returns all.

Returns: A pandas DataFrame containing the computed statistics.

__str__

__str__() -> str

String representation.

Was this page helpful?