We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2faca60 commit 01be04eCopy full SHA for 01be04e
1 file changed
apps/transport/lib/irve/database_importer.ex
@@ -33,7 +33,9 @@ defmodule Transport.IRVE.DatabaseImporter do
33
end
34
35
def write_to_db(file_path, dataset_datagouv_id, resource_datagouv_id) do
36
- content = File.read!(file_path)
+ content =
37
+ File.read!(file_path)
38
+ |> Transport.IRVE.RawStaticConsolidation.ensure_utf8()
39
40
rows_stream =
41
content |> Transport.IRVE.Processing.read_as_data_frame() |> Explorer.DataFrame.to_rows_stream()
0 commit comments