-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
Permit post-process merging in custommap schemas #626
Merged
msbarry
merged 19 commits into
onthegomap:main
from
zhibek:custommap-postprocess-merging
Aug 7, 2023
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
55cce57
Fixes #350 - Permit post-process merging in custommap schemas
zhibek f7bf5ec
Fix sonar failures
zhibek 5e7473e
Initial test coverage
zhibek 8bdcc76
Increase test coverage
zhibek 9d84810
Remove redundant logging. Declare merge variables as doubles not ints.
zhibek 42c9b5b
Test ConfiguredProfile.postProcessLayerFeatures()
zhibek 79eacad
Fix test code formatting
zhibek 2485c42
Re-run CI
zhibek d9e51c1
Re-run CI (doc link down previously)
zhibek 70f356b
Merge branch 'main' into custommap-postprocess-merging
zhibek aa79a3f
Rename "merge_overlapping_polygons" to "merge_polygons"
zhibek ae39870
Avoid implicit attribute name in JsonProperty for MergeLineStrings
zhibek 36cfe4d
Rename "post_process" to "tile_post_process"
zhibek 22b260a
Move postProcessLayerFeatures() processing to constructor
zhibek f3f9319
Use assertNull() in test
zhibek 9c3f8c2
Reference "tile_post_process" in JSON schema and README
zhibek 0c33d6d
Fix lint for README
zhibek d236bd9
Allow lines and polygons to be merged sequentially
zhibek a708ac2
Update example custom schema
zhibek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Rename "post_process" to "tile_post_process"
- Loading branch information
commit 36cfe4d5444c1896783812123e36aa26361812ff
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,6 @@ layers: | |
attributes: | ||
- key: water | ||
- value: wet | ||
post_process: | ||
tile_post_process: | ||
merge_everything: | ||
min_length: 1 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change looks good! Only thing left is to mention these features in
planetiler.schema.json
andplanetiler-custommap/README.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change pushed.