GithubHelp home page GithubHelp logo

metacsv's Introduction

= metacsv =

metacsv is a wrapper for [http://opencsv.sourceforge.net/ opencsv] to allow extra metadata to be read and written alongside conventional csv files.

For example, if you want to write a csv file which represents data at a given timestep, 123, the file may look like this:

{{{
time=123
0,0,1,2,1,0
}}}

Additional formats may be added in the future (for example, the metadata may instead be written to an external file, or perhaps a different worksheet in an excel file), however, this should not be of your concern so long as you use this library for both reading and writing.

== Example Writer ==
{{{
Metadata metadata = new Metadata();
metadata.put("Time", 123);
MetaCSVWriter metaCSVWriter = new MetaCSVWriterImpl(new FileWriter("example.csv"), metadata);

DataRow row = new DataRow(0,0,1,2,1,0);
metaCSVWriter.appendDataRow(row);

metaCSVWriter.close();
}}}

== Example Reader ==
{{{
MetaCSVReader reader = new MetaCSVReaderImpl(new FileReader("example.csv"));
Metadata metadata = reader.getMetadata();
int time = Integer.parseInt(metadata.get("time"));

List<DataRow> entries = reader.getData();
DataRow firstRow = entries.get(0);
String firstEntry = firstRow.get(0);
}}}

metacsv's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.