From 571a1f096e9794f44b703b10554439e51ee866c4 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 28 May 2025 15:54:15 +0100 Subject: [PATCH] Updated examples --- docs/index.rst | 6 +++--- docs/quickstart.rst | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index acec0cc..68f1dae 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -read_aconity_layers Documentation +read_aconity_layers ================================== A utility for fast reading of layer data from the aconity mini powder bed fusion machine. @@ -38,11 +38,11 @@ Quick Example data = ral.read_layers("/path/to/layer/files/") # Read specific layer files - files = ["/path/to/layer1.pcd", "/path/to/layer2.pcd"] + files = ["/path/to/0.01.pcd", "/path/to/0.02.pcd"] data = ral.read_selected_layers(files) # Read a single layer - layer = ral.read_layer("/path/to/layer.pcd") + layer = ral.read_layer("/path/to/0.01.pcd") Indices and tables ================== diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 2decfe7..cdb38bd 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -51,7 +51,7 @@ For processing individual layers: import read_aconity_layers as ral # Read just one layer file - layer_data = ral.read_layer("/path/to/single_layer.pcd") + layer_data = ral.read_layer("/path/to/0.01.pcd") # Extract coordinates x_coords = layer_data[:, 0]