1 parent 47713e1 commit e28a6d3Copy full SHA for e28a6d3
1 file changed
README.rst
@@ -74,7 +74,16 @@ sorts it by the ``X`` dimension:
74
log = pipeline.log
75
76
Pass ``timing=True`` when creating a pipeline to include PDAL timing
77
-information in ``pipeline.log`` after execution.
+information in ``pipeline.log`` after execution:
78
+
79
+.. code-block:: python
80
81
+ import logging
82
+ import pdal
83
84
+ pipeline = pdal.Pipeline(json, loglevel=logging.DEBUG, timing=True)
85
+ count = pipeline.execute()
86
+ timing_log = pipeline.log
87
88
Programmatic Pipeline Construction
89
................................................................................
0 commit comments