forked from neo4j-contrib/spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrank-days.rb
executable file
·53 lines (44 loc) · 1.81 KB
/
rank-days.rb
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
#!/usr/bin/env ruby
# This script uses the amanzi-sld DSL to create a sample SLD file
# for styling a number of layers in a typical OSM data model.
# This example should work with a layer containing all geometries.
# useful if being run inside a source code checkout
$: << 'lib'
$: << '../lib'
$: << '../amanzi-sld/lib'
#require 'rubygems'
require 'amanzi/sld'
Amanzi::SLD::Config.config[:geometry_property] = 'the_geom'
#Amanzi::SLD::Config.config[:verbose] = true
sld = Amanzi::SLD::Document.new "Example Neo4j Spatial OSM Style"
colors = ["#FFFF00","#7FFF00","#00FF00","#00FF7F","#00FFFF",
"#007FFF","#0000FF","#7F00FF","#FF00FF","#FF007F",
"#FE0EF0","#FF07F0","#0F00F0","#0F70FF","#0FFF0F",
"#070FFF","#00F00F","#07F0FF","#F0FFF0","#7F00FF",
"#060EEE","#00E00E","#06E0EE","#E0EEE0","#4E00EE"]
colors.each_with_index do |color,index|
user_rank = index + 1
(0..5).each do |day|
min_day = day * 7
max_day = (day + 1) * 7
opacity = (5-day).to_f/5.0
options = {:stroke => color, :fill => color, :stroke_opacity => opacity, :opacity => opacity, :fill_opacity => opacity/2}
sld.comment "Style geometries where the user_rank is #{user_rank} and day is #{day}"
block = Proc.new do |f|
# if day == 0
# f.property['user_rank'] = user_rank
# else
f.op(:and) do |f|
f.property['user_rank'] = user_rank
f.property.exists? :days
f.property[:days] >= min_day
f.property[:days] < max_day
end
# end
end
sld.add_point_symbolizer(options.merge(:geometry => 'Point'),&block)
sld.add_line_symbolizer(options.merge(:stroke_width => day == 0 ? 5 : 2, :geometry => 'LineString'),&block)
sld.add_polygon_symbolizer(options.merge(:geometry => 'Polygon'),&block)
end
end
puts sld.to_xml(:tab => ' ')