Skip to content

Commit 565b687

Browse files
Fix mistakes in readme
1 parent 18ccf17 commit 565b687

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Binary Array Linked Data
22

33
[Kotlin](https://kotlinlang.org/) library and CLI for Binary Array Linked Data (BALD) functionality.
4-
* NetCDF to RDF conversion according to [OGC draft specification]((http://docs.opengeospatial.org/DRAFTS/19-002.html)).
4+
* NetCDF to RDF conversion according to [OGC draft specification](http://docs.opengeospatial.org/DRAFTS/19-002.html).
55

66
This project consists of the following modules:
77
* **binary-array-ld-lib** Core library containing BALD functionality. In particular, binary array to linked data (RDF) conversion.
@@ -55,7 +55,7 @@ BinaryArray ba = NetCdfBinaryArray.create(inputLoc, "http://test.binary-array-ld
5555
Model model = ModelBinaryArrayConverter.convert(ba);
5656
5757
try (OutputStream output = new FileOutputStream(outputLoc)) {
58-
model.write(output, format);
58+
model.write(output, "ttl");
5959
}
6060
```
6161

0 commit comments

Comments
 (0)