Skip to content

Commit

Permalink
Update PDAL up to 2.7.0 (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin authored Mar 19, 2024
1 parent 6f634c9 commit a017f86
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
arch: arm64
java: [11]
distribution: [temurin]
pdal: [2.6.3]
pdal: [2.7.0]
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
os: [ubuntu-latest]
java: [8]
distribution: [temurin]
pdal: [2.6.3]
pdal: [2.7.0]
runs-on: ${{ matrix.os }}
if: github.event_name != 'pull_request'
needs: [build]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ String json =
}
""";
var pipeline = new Pipeline(json, LogLevel.Error());
var pipeline = new Pipeline(json, LogLevel.Debug5()); // initialize and make it really noisy
pipeline.execute(); // execute the pipeline
Expand Down
2 changes: 1 addition & 1 deletion examples/pdal-jni/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos

fork := true

val pdalVersion = "2.6.0"
val pdalVersion = "2.6.3"

libraryDependencies ++= Seq(
"io.pdal" %% "pdal" % pdalVersion,
Expand Down
3 changes: 0 additions & 3 deletions examples/pdal-jni/src/main/java/com/azavea/MainJava.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ class MainJava {
static String json = "{\"pipeline\":[{\"filename\":\"data/1.2-with-color.las\",\"spatialreference\":\"EPSG:2993\"},{\"type\":\"filters.reprojection\",\"out_srs\":\"EPSG:3857\"}]}";

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

0 comments on commit a017f86

Please sign in to comment.