Skip to content

Commit a017f86

Browse files
authored
Update PDAL up to 2.7.0 (#97)
1 parent 6f634c9 commit a017f86

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
arch: arm64
2525
java: [11]
2626
distribution: [temurin]
27-
pdal: [2.6.3]
27+
pdal: [2.7.0]
2828
runs-on: ${{ matrix.os }}
2929
defaults:
3030
run:
@@ -91,7 +91,7 @@ jobs:
9191
os: [ubuntu-latest]
9292
java: [8]
9393
distribution: [temurin]
94-
pdal: [2.6.3]
94+
pdal: [2.7.0]
9595
runs-on: ${{ matrix.os }}
9696
if: github.event_name != 'pull_request'
9797
needs: [build]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ String json =
150150
}
151151
""";
152152
153-
var pipeline = new Pipeline(json, LogLevel.Error());
153+
var pipeline = new Pipeline(json, LogLevel.Debug5()); // initialize and make it really noisy
154154
155155
pipeline.execute(); // execute the pipeline
156156

examples/pdal-jni/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos
2323

2424
fork := true
2525

26-
val pdalVersion = "2.6.0"
26+
val pdalVersion = "2.6.3"
2727

2828
libraryDependencies ++= Seq(
2929
"io.pdal" %% "pdal" % pdalVersion,

examples/pdal-jni/src/main/java/com/azavea/MainJava.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ class MainJava {
77
static String json = "{\"pipeline\":[{\"filename\":\"data/1.2-with-color.las\",\"spatialreference\":\"EPSG:2993\"},{\"type\":\"filters.reprojection\",\"out_srs\":\"EPSG:3857\"}]}";
88

99
public static void main(String[] args) {
10-
// can be replaced via io.pdal.Pipeline$.MODULE$.apply(json, LogLevel.Error());
11-
// which encapsulates initialize() call
1210
var pipeline = new Pipeline(json, LogLevel.Error());
13-
pipeline.initialize();
1411
pipeline.execute();
1512
System.out.println("pipeline.getMetadata():" + pipeline.getMetadata());
1613
pipeline.close();

0 commit comments

Comments
 (0)