diff --git a/GrpcInterface/GrpcProtos/GridGeometryExtraction.proto b/GrpcInterface/GrpcProtos/GridGeometryExtraction.proto index 1b03cf9e1e..6b795c8d5d 100644 --- a/GrpcInterface/GrpcProtos/GridGeometryExtraction.proto +++ b/GrpcInterface/GrpcProtos/GridGeometryExtraction.proto @@ -78,7 +78,7 @@ message PolylineTestResponse message CutAlongPolylineResponse { - repeated FenceMeshSection feceMeshSections = 1; + repeated FenceMeshSection fenceMeshSections = 1; PolylineTestResponse polylineTestResponse = 2; Vec3i gridDimensions = 3; } diff --git a/GrpcInterface/Python/rips/WebvizPythonExamples/grid_geometry_extraction_cut_along_polyline.py b/GrpcInterface/Python/rips/WebvizPythonExamples/grid_geometry_extraction_cut_along_polyline.py index 1f4786ac70..d072799436 100644 --- a/GrpcInterface/Python/rips/WebvizPythonExamples/grid_geometry_extraction_cut_along_polyline.py +++ b/GrpcInterface/Python/rips/WebvizPythonExamples/grid_geometry_extraction_cut_along_polyline.py @@ -53,7 +53,7 @@ grid_geometry_extraction_stub.CutAlongPolyline(cut_along_polyline_request) ) -fence_mesh_sections = cut_along_polyline_response.feceMeshSections +fence_mesh_sections = cut_along_polyline_response.fenceMeshSections print(f"Number of fence mesh sections: {len(fence_mesh_sections)}") section_mesh_3d = [] diff --git a/GrpcInterface/RiaGrpcGridGeometryExtractionService.cpp b/GrpcInterface/RiaGrpcGridGeometryExtractionService.cpp index 5e82120d18..fab3ee834c 100644 --- a/GrpcInterface/RiaGrpcGridGeometryExtractionService.cpp +++ b/GrpcInterface/RiaGrpcGridGeometryExtractionService.cpp @@ -223,7 +223,7 @@ grpc::Status RiaGrpcGridGeometryExtractionService::CutAlongPolyline( grpc::Serve const auto& polylineSegmentsMeshData = polylineIntersectionGenerator->polylineSegmentsMeshData(); for ( const auto& segment : polylineSegmentsMeshData ) { - auto* fenceMeshSection = response->add_fecemeshsections(); + auto* fenceMeshSection = response->add_fencemeshsections(); // Set start UTM (x,y) rips::Vec2d* startUtmXY = new rips::Vec2d;