33 lines
666 B
Ruby
Executable File
33 lines
666 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require 'json'
|
|
|
|
y = []
|
|
|
|
10000.times do
|
|
h = {
|
|
'x' => rand,
|
|
'y' => rand,
|
|
'z' => rand,
|
|
'name' => ('a'..'z').to_a.shuffle[0..5].join + ' ' + rand(10000).to_s,
|
|
'opts' => {'1' => [1, true]},
|
|
}
|
|
y << h
|
|
end
|
|
|
|
File.open("2.json", 'w') { |f| f.write JSON.pretty_generate('coordinates' => y, 'info' => "some info") }
|
|
|
|
x = []
|
|
|
|
524288.times do
|
|
h = {
|
|
'x' => rand,
|
|
'y' => rand,
|
|
'z' => rand,
|
|
'name' => ('a'..'z').to_a.shuffle[0..5].join + ' ' + rand(10000).to_s,
|
|
'opts' => {'1' => [1, true]},
|
|
}
|
|
x << h
|
|
end
|
|
|
|
File.open("1.json", 'w') { |f| f.write JSON.pretty_generate('coordinates' => x, 'info' => "some info") }
|