Skip to content

Commit 37c38fb

Browse files
committed
Preparing ground to write CSV file
1 parent 8759984 commit 37c38fb

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ make
2222

2323
It will generate an `edf.jar` file on the `target` folder. This Jarfile can be included in your application wherever needed.
2424

25+
## Development ##
26+
27+
The current workings of JEDF are destined to a `v0.3`, which must save the EDF file to the CSV format, mimicking [the analogous Golang implementation of this package](https://github.com/ishiikurisu/edf). `v0.4` must be able to convert the EDF both to CSV and back to the EDF format, so the programmer can make changes on the EDF file and save it back to later concerns.
28+
29+
Future ideas include the implementation of a on-time access to the data: the `EDF` class would know where to find certain parts of the file and load them whenever needed instead of storing the whole file's contents on RAM memory.
30+
2531
# Library
2632

2733
## The `EDF` class ##

manifest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Specification-Title: "EDF+ format implementation"
44
Specification-Version: "1.1"
55
Specification-Vendor: "European Data Format"
66
Implementation-Title: "br.unb.biologiaanimal.edf"
7-
Implementation-Version: "0.2.1"
7+
Implementation-Version: "0.3"
88
Implementation-Vendor: "Laboratory of Neuroscience and Behavior"

target/edf.jar

-1 Bytes
Binary file not shown.

test/br/unb/biologiaanimal/test/Run.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static void main(String[] args) {
5252
try { edf.toAscii("data\\edf\\HCT-4-23.ascii"); }
5353
catch (Exception any) { System.out.println(any); }
5454
System.out.println("-- + To CSV");
55-
try { edf.toCsv("data\\edf\\HCT-4-23.java.ascii"); }
55+
try { edf.toCsv("data\\edf\\HCT-4-23.java.csv"); }
5656
catch (Exception any) { System.out.println(any); }
5757

5858
System.out.println("...");

0 commit comments

Comments
 (0)