Skip to content
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

[BUG/Feature] <Support latin1 encoding> #514

Open
kreisligaspieler opened this issue Jan 25, 2024 · 0 comments
Open

[BUG/Feature] <Support latin1 encoding> #514

kreisligaspieler opened this issue Jan 25, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@kreisligaspieler
Copy link

kreisligaspieler commented Jan 25, 2024

At the moment (Version 0.3.0) latin1 encoding is not supported

Can be tested with this pipeline:

pipeline TestPipeline {
  Extractor -> TextFileInterpreter->CSVInterpreter->TableInterpreter->Loader;
  block Extractor oftype HttpExtractor { url: "https://data.bsh.de/OpenData/DOD/MO_H_CHLA/MO_H_CHLA_2017.txt"; }
  block TextFileInterpreter oftype TextFileInterpreter {encoding: "null";}
  block CSVInterpreter oftype CSVInterpreter {enclosing: '"	"';delimiter: "	";}
  block TableInterpreter oftype TableInterpreter {
              header: true;
              columns: ["Cruise" oftype text,"Station" oftype text,"Type" oftype text,"yyyy-mm-ddThh:mm:ss.sss" oftype integer,"Longitude [degrees_east]" oftype integer,"Latitude [degrees_north]" oftype text,"LOCAL_CDI_ID" oftype text,"EDMO_code" oftype integer,"Bot. Depth [m]" oftype integer,"Depth [m]" oftype integer,"QV_1" oftype integer,"CHLA_FLM_FGN_ALC[µg/l]" oftype integer,"QV_2" oftype text,"CHLA_PTM_F_ACE[µg/l]" oftype integer,"QV_3" oftype text];
   }
  block Loader oftype SQLiteLoader {table: "test";   file: "test/2/test.sqlite";}
}
@kreisligaspieler kreisligaspieler added the bug Something isn't working label Jan 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant