Skip to content

Commit 01e0523

Browse files
committed
Update.
1 parent 1b6ad00 commit 01e0523

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

pdal/test/data/pipeline/crop_wkt_2d_classification.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pipeline":[
3-
"/Users/acbell/pdal/test/data/las/1.2-with-color.las",
3+
"./pdal/test/data/1.2-with-color.las",
44
{
55
"type":"filters.crop",
66
"polygon":"POLYGON ((636889.4129512392682955 851528.5122932585654780, 636899.1423342394409701 851475.0006867571501061, 636899.1423342394409701 851475.0006867571501061, 636928.3304832403082401 851494.4594527576118708, 636928.3304832403082401 851494.4594527576118708, 636928.3304832403082401 851494.4594527576118708, 636976.9773982415208593 851513.9182187581900507, 636976.9773982415208593 851513.9182187581900507, 637069.4065367440925911 851475.0006867571501061, 637132.6475262457970530 851445.8125377562828362, 637132.6475262457970530 851445.8125377562828362, 637336.9645692512858659 851411.7596972554456443, 637336.9645692512858659 851411.7596972554456443, 637473.1759312548674643 851158.7957392486277968, 637589.9285272579872981 850711.2441212366102263, 637244.5354307487141341 850511.7917697312077507, 636758.0662807356566191 850667.4618977354839444, 636539.1551632297923788 851056.6372177458833903, 636889.4129512392682955 851528.5122932585654780))",
@@ -13,7 +13,7 @@
1313
"module":"anything"
1414
},
1515
{
16-
"filename":"/Users/acbell/pdal/test/temp/crop-wkt-2d-classification.las",
16+
"filename":"./pdal/test/temp/crop-wkt-2d-classification.las",
1717
"compression":false
1818
}
1919
]

pdal/test/data/pipeline/from-module.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pipeline":[
3-
"/Users/acbell/pdal/test/data/las/1.2-with-color.las",
3+
"./pdal/test/data/1.2-with-color.las",
44
{
55
"type": "filters.python",
66
"script": "/Users/acbell/pdal/test/data/plang/test1.py",

pdal/test/data/pipeline/predicate-embed.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pipeline":[
3-
"/Users/acbell/pdal/test/data/las/1.2-with-color.las",
3+
"./pdal/test/data/1.2-with-color.las",
44
{
55
"type":"filters.python",
66
"module":"anything",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"pipeline":[
3-
"/Users/acbell/pdal/test/data/autzen/autzen.las",
3+
"./pdal/test/data/autzen.las",
44
{
55
"type":"filters.python",
66
"module":"anything",
77
"function":"filter",
88
"source":"import numpy as np\n\ndef filter(ins,outs):\n\tcls = ins['Classification']\n\n\tkeep_classes = [1,2]\n\n\t# Use the first test for our base array.\n\tkeep = np.equal(cls, keep_classes[0])\n\n\t# For 1:n, test each predicate and join back\n\t# to our existing predicate array\n\tfor k in range(1,len(keep_classes)):\n\t\tt = np.equal(cls, keep_classes[k])\n\t\tkeep = keep + t\n\n\touts['Mask'] = keep\n\treturn True"
99
},
10-
"/Users/acbell/pdal/test/temp/out2.las"
10+
"./pdal/test/temp/out2.las"
1111
]
1212
}

pdal/test/data/pipeline/programmable-update-y-dims.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pipeline":[
3-
"/Users/acbell/pdal/test/data/autzen/autzen-utm.las",
3+
"/Users/acbell/pdal/test/data/autzen-utm.las",
44
{
55
"type":"filters.python",
66
"function":"myfunc",

0 commit comments

Comments
 (0)