I am just trying to import a CSV file (with semicolon; delimiter) into a MongoDB database. I managed to import using mongoimport -d mydb -c things --type csv --file files.csv --headerline, but the result is not what I expect. Files have the following form:

And I get the following result:

But I want something like:
{
"_id": ObjectId("57b6e2654bf4a357b679305"),
"geom_x_y" : "48.87792844925 , 2.3664591564",
"circonfere" : "25.0",
"adresse" : "PARIS 10E ARRDT - QUAI DE JEMMAPES",
"hauteurnm" : "5.0",
"espece" : "Acer platanoides",
"varieteouc" : "'Schwedleri'",
"dateplanta" : "31/12/2014"
}
IRKT7 source
share