Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
f17a7dce
Commit
f17a7dce
authored
15 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
ENH: parsing in progress
parent
75068e6b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
osmStyleXMLParser.py
+25
-9
25 additions, 9 deletions
osmStyleXMLParser.py
with
25 additions
and
9 deletions
osmStyleXMLParser.py
+
25
−
9
View file @
f17a7dce
...
...
@@ -2,7 +2,7 @@ import xml.parsers.expat
fout
=
open
(
"
osm-style-in-c.c
"
,
'
w
'
)
writeNextCharData
=
0
currentStyleName
=
""
#continue here...
currentStyleName
=
""
isStroke
=
0
isStrokeWidth
=
0
isStrokeOpacity
=
0
...
...
@@ -14,10 +14,12 @@ strokeColor=""
def
start_element
(
name
,
attrs
):
print
'
Start element:
'
,
name
,
attrs
global
writeNextCharData
global
currentStyleName
if
(
name
==
'
Style
'
):
currentStyleName
=
attrs
[
'
name
'
]
fout
.
write
(
"
{
\n
mapnik::feature_type_style style;
\n
"
)
if
(
name
==
'
Rule
'
):
fout
.
write
(
"
{
\n
"
)
fout
.
write
(
"
mapnik::feature_type_style style;
\n
"
)
fout
.
write
(
"
mapnik::rule_type rule;
\n
"
)
fout
.
write
(
"
{
\n
mapnik::rule_type rule;
\n
"
)
if
(
name
==
'
MaxScaleDenominator
'
):
fout
.
write
(
"
rule.set_max_scale(
"
)
writeNextCharData
=
1
...
...
@@ -33,15 +35,24 @@ def start_element(name, attrs):
if
(
attrs
[
'
name
'
]
==
'
stroke
'
):
isStroke
=
1
if
(
attrs
[
'
name
'
]
==
'
stroke-width
'
):
isStroke
=
1
isStroke
Width
=
1
if
(
attrs
[
'
name
'
]
==
'
stroke-opacity
'
):
isStroke
=
1
isStrokeOpacity
=
1
if
(
name
==
'
TextSymbolizer
'
):
fout
.
write
(
"
mapnik::text_symbolizer textSymb(
\"
"
+
attrs
[
'
name
'
]
+
"
\"
,
\"
"
+
attrs
[
'
face_name
'
]
+
"
\"
,
"
+
attrs
[
'
size
'
]
+
"
, mapnik::color(
\"
"
+
attrs
[
'
fill
'
]
+
"
\"
));
\n
"
)
#continue here
def
end_element
(
name
):
print
'
End element:
'
,
name
global
writeNextCharData
global
strokeColor
global
strokeWidth
global
strokeOpacity
global
currentStyleName
if
(
name
==
'
Style
'
):
fout
.
write
(
"
mapnikMap.insert_style(
\"
"
+
currentStyleName
+
"
\"
,style);
\n
}
\n
"
)
currentStyleName
=
""
if
(
name
==
'
Rule
'
):
fout
.
write
(
"
}
\n
"
)
fout
.
write
(
"
style.add_rule(rule);
\n
}
\n
"
)
if
(
name
==
'
MaxScaleDenominator
'
):
fout
.
write
(
"
LLU);
\n
"
);
writeNextCharData
=
0
...
...
@@ -49,7 +60,8 @@ def end_element(name):
fout
.
write
(
"
LLU);
\n
"
);
writeNextCharData
=
0
if
(
name
==
'
LineSymbolizer
'
):
fout
.
write
(
"
mapnik::stroke stroke = mapnik::stroke();
\n
"
)
fout
.
write
(
"
mapnik::stroke stroke = mapnik::stroke(mapnik::color(
\"
"
+
strokeColor
+
"
\"
),
"
+
strokeWidth
+
"
);
\n
"
)
fout
.
write
(
"
stroke.set_opacity (
"
+
strokeOpacity
+
"
);
\n
"
)
fout
.
write
(
"
geom.set_stroke(stroke);
\n
"
)
fout
.
write
(
"
rule.append(geom);
\n
}
\n
"
)
strokeWidth
,
strokeOpacity
,
strokeColor
=
""
,
""
,
""
...
...
@@ -64,7 +76,11 @@ def end_element(name):
if
(
isStrokeOpacity
):
isStrokeOpacity
=
0
def
char_data
(
data
):
global
strokeColor
global
strokeWidth
global
strokeOpacity
print
'
Character data:
'
,
repr
(
data
)
if
(
writeNextCharData
):
fout
.
write
(
data
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment