diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index 2d7f72e..265ff5d 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/_modules/pyvibracore/results/vibration_result.html b/_modules/pyvibracore/results/vibration_result.html index 4a49ff8..dc8bd69 100644 --- a/_modules/pyvibracore/results/vibration_result.html +++ b/_modules/pyvibracore/results/vibration_result.html @@ -335,7 +335,9 @@

Source code for pyvibracore.results.vibration_result

gdf.where( np.logical_and( gdf["category"] == "one", - np.logical_or(gdf["monumental"], gdf["vibrationSensitive"]), + np.logical_or( + gdf["monumental"], gdf["structuralCondition"] == "sensitive" + ), ) ).plot(ax=axes, zorder=2, color=settings["sensitive_cat1"]["color"], aspect=1) @@ -343,7 +345,9 @@

Source code for pyvibracore.results.vibration_result

gdf.where( np.logical_and( gdf["category"] == "one", - ~np.logical_or(gdf["monumental"], gdf["vibrationSensitive"]), + ~np.logical_or( + gdf["monumental"], gdf["structuralCondition"] == "sensitive" + ), ) ).plot(ax=axes, zorder=2, color=settings["normal_cat1"]["color"], aspect=1) @@ -351,7 +355,9 @@

Source code for pyvibracore.results.vibration_result

gdf.where( np.logical_and( gdf["category"] == "two", - np.logical_or(gdf["monumental"], gdf["vibrationSensitive"]), + np.logical_or( + gdf["monumental"], gdf["structuralCondition"] == "sensitive" + ), ) ).plot(ax=axes, zorder=2, color=settings["sensitive_cat2"]["color"], aspect=1) @@ -359,7 +365,9 @@

Source code for pyvibracore.results.vibration_result

gdf.where( np.logical_and( gdf["category"] == "two", - ~np.logical_or(gdf["monumental"], gdf["vibrationSensitive"]), + ~np.logical_or( + gdf["monumental"], gdf["structuralCondition"] == "sensitive" + ), ) ).plot(ax=axes, zorder=2, color=settings["normal_cat2"]["color"], aspect=1)