Skip to content

Commit

Permalink
fix: feature builder sets interpolator interpolation__region
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan Grose committed Oct 3, 2022
1 parent 7f56fdd commit 520cc01
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ def __init__(
)
self.data = pd.DataFrame(columns=header)
self.data_added = False
self._interpolator.set_region(region=self.region)
self._interpolation_region = None
self.interpolation_region = interpolation_region
if self.interpolation_region is not None:
self._interpolator.set_region(region=self.interpolation_region)

self._feature = GeologicalFeature(
self._name,
Expand All @@ -80,7 +83,7 @@ def __init__(
)
self._orthogonal_features = {}
self._equality_constraints = {}



@property
Expand Down

0 comments on commit 520cc01

Please sign in to comment.