blob: b63fba12e3008316d6d63157965901b30ea49a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
require 'json'
require 'csv'
require 'rgeo'
require 'rgeo-geojson'
class Parser
def initialize()
@list_of_locations = {}
@list_of_locations["type"] = "FeatureCollection"
@list_of_locations["features"] = []
end
def parseConcertesFiles(data_file, coordinates_file)
data = CSV.parse(File.read(data_file), headers: true, :col_sep => ";")
coord = CSV.parse(File.read(coordinates_file), headers: true, :col_sep => ";")
i = 0
while i < data.size
new_item = {}
new_item["type"] = "Feature"
new_item["geometry"] = {}
new_item["geometry"]["type"] = "Point"
new_item["geometry"]["coordinates"] = [coord[i]["CoordLamb_X"].to_f, coord[i]["CoordLamb_Y"].to_f]
new_item["properties"] = {}
new_item["properties"]["name"] = data[i]["Denomination_FULL"]
new_item["properties"]["description"] = data[i]["description"]
new_item["properties"]["entry_number"] = data[i]["NumEntr"]
new_item["properties"]["phone_number"] = coord[i]["Tel"]
new_item["properties"]["website"] = coord[i]["Web"]
new_item["properties"]["mail"] = coord[i]["Email"]
new_item["properties"]["address"] = coord[i]["Adresse"]
new_item["properties"]["city"] = data[i]["INS_COMMUNE"]
new_item["properties"]["postal_code"] = coord[i]["Code postal"]
new_item["properties"]["categories"] = []
new_item["properties"]["source"] = "Concertes"
new_item["properties"]["srid"] = "4326" #Not precised in Concertes database
@list_of_locations["features"].push(new_item)
i += 1
end
File.write("Locations.geojson", JSON.pretty_generate(@list_of_locations))
end
def writeToFile(write_file)
File.write(write_file, JSON.pretty_generate(@list_of_locations))
end
end
BEGIN {
puts "Starting parser"
}
parser = Parser.new()
parser.parseConcertesFiles("Concertes/20200312_EntreprisesSignaletique.csv", "Concertes/20200312_EntreprisesCoordonnees.csv")
parser.writeToFile("LocationsConcertes.geojson")
END {
puts "Ending parser"
}
|