-
Notifications
You must be signed in to change notification settings - Fork 3
9.1 Internal Prefixes #20
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
Merged
CMayNorris
merged 35 commits into
binary-array-ld:master
from
simonoakesepimorphics:feature/9.1-prefix-internal
Nov 10, 2020
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
35ce80d
Add vocab reference object
simonoakesepimorphics cb3f96d
Add classes for composing RDF model
simonoakesepimorphics a064c9b
Add RDF model test utils and tests
simonoakesepimorphics 65259bd
Add binary array to model conversion API impl
simonoakesepimorphics f48cc53
Add NetCDF binary array factory method impl, tests
simonoakesepimorphics f8bb029
Add CLI impl, test, docs
simonoakesepimorphics 0d7420e
Fix Java version in maven compiler plugin
simonoakesepimorphics e1ec12a
Add prefix mapping concept on binary array
simonoakesepimorphics a712090
Add prefix mapping to model composition, tests
simonoakesepimorphics 1f1891f
Add NetCDF impl of prefix mapping concept
simonoakesepimorphics 3c5bfec
Add tests, upgrade test format to NetCDF4 to support prefix group.
simonoakesepimorphics e14b5c2
Add logback config on CLI to suppress debug logs
simonoakesepimorphics 493a20a
NetCDF4 considerations in tests
simonoakesepimorphics 94f8105
Merge branch 'initial-setup' into feature/8-identity
simonoakesepimorphics 67370a6
Merge branch 'feature/8-identity' into feature/9.1-prefix-internal
simonoakesepimorphics 65359a2
Add file container, refactor
simonoakesepimorphics 0b35f20
Add file container to tests
simonoakesepimorphics 6510111
Merge branch 'feature/8-identity' into feature/9.1-prefix-internal
simonoakesepimorphics b60b503
Fix tests
simonoakesepimorphics a228e28
Merge branch 'feature/8-identity' into feature/9.1-prefix-internal
simonoakesepimorphics 572758d
Changed test data to CDL format
simonoakesepimorphics cdbd5c0
Merge branch 'feature/8-identity' into feature/9.1-prefix-internal
simonoakesepimorphics 2611cbb
Remove NCML references
simonoakesepimorphics 9b76f87
Fix Java version on demo
simonoakesepimorphics a3c9605
ADD name and subgroups to container concept
simonoakesepimorphics 925833f
Enhance binary array converter to describe subgroups
simonoakesepimorphics 2ff2a52
Fix test consistency
simonoakesepimorphics 5f5f71c
Merge branch 'feature/8-identity' into feature/9.1-prefix-internal
simonoakesepimorphics c14e9a2
Add prefix var support
simonoakesepimorphics f82bde6
Remove prefix group / var from graph
simonoakesepimorphics 7685d14
Replace BALD prefix mapping concept with Jena prefix mapping
simonoakesepimorphics 6f81aa6
Merge branch 'master' into feature/9.1-prefix-internal
simonoakesepimorphics 87bc8aa
Fix merge issue
simonoakesepimorphics ade7db8
Use common test method
simonoakesepimorphics 6acdf90
Add prefix mapping validation
simonoakesepimorphics 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
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<configuration> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="info"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Might be nice here to share the model verification of run_withPrefixMappingGroup_outputsPrefixMapping() and run_withPrefixMappingVar_outputsPrefixMapping() in a separate function (if possible) to make it clearer that both group and var prefix mapping are expecting the same output?
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.
Good call, done.