Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update filter.stats #39

Merged
merged 1 commit into from
Mar 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update filter.stats
  • Loading branch information
pomadchin committed Mar 25, 2020
commit 48fcea4856e43e4cbd44a59c786a69bb3356cea0
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- Update filter.stats [#39](https://github.com/PDAL/java/pull/39)

## [2.1.5-RC3] - 2020-03-13
### Fixed
- Fix mesh rasterizer [#38](https://github.com/PDAL/java/pull/38)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -759,9 +759,11 @@ case class FilterSplitter(

@ConfiguredJsonCodec
case class FilterStats(
dimenstions: Option[String] = None,
dimensions: Option[String] = None,
enumerate: Option[String] = None,
count: Option[Int] = None,
global: Option[String] = None,
advanced: Option[Boolean] = None,
`type`: FilterType = FilterTypes.stats
) extends PipelineExpr

Expand Down