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
d5062285
Commit
d5062285
authored
15 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
ENH: working on filters
parent
140bb04d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
osmStyleXMLParser.py
+2
-3
2 additions, 3 deletions
osmStyleXMLParser.py
otbVectorDataStyle.cxx
+1446
-1
1446 additions, 1 deletion
otbVectorDataStyle.cxx
otbVectorDataToImageFilter.txx
+1
-0
1 addition, 0 deletions
otbVectorDataToImageFilter.txx
with
1449 additions
and
4 deletions
osmStyleXMLParser.py
+
2
−
3
View file @
d5062285
...
...
@@ -21,7 +21,7 @@ def start_element(name, attrs):
if
(
name
==
'
Rule
'
):
fout
.
write
(
"
{
\n
mapnik::rule_type rule;
\n
"
)
if
(
name
==
'
Filter
'
):
fout
.
write
(
"
mapnik::filter_ptr
filt
=
mapnik::create_filter(
\"
"
)
fout
.
write
(
"
rule.set_
filt
er(
mapnik::create_filter(
\"
"
)
writeNextCharData
=
1
if
(
name
==
'
MaxScaleDenominator
'
):
fout
.
write
(
"
rule.set_max_scale(
"
)
...
...
@@ -57,8 +57,7 @@ def end_element(name):
if
(
name
==
'
Rule
'
):
fout
.
write
(
"
style.add_rule(rule);
\n
}
\n
"
)
if
(
name
==
'
Filter
'
):
fout
.
write
(
"
\"
);
\n
"
)
fout
.
write
(
"
rule.set_filter(filt);
\n
"
)
fout
.
write
(
"
\"
));
\n
"
)
writeNextCharData
=
0
if
(
name
==
'
MaxScaleDenominator
'
):
fout
.
write
(
"
LLU);
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
otbVectorDataStyle.cxx
+
1446
−
1
View file @
d5062285
This diff is collapsed.
Click to expand it.
otbVectorDataToImageFilter.txx
+
1
−
0
View file @
d5062285
...
...
@@ -353,6 +353,7 @@ namespace otb
// std::cout << " -> " << (*mfeature)["name2"] << std::endl;
std::cout << "Type: " << dataNode->GetFieldAsString("type") << std::endl;
boost::put(*mfeature, "highway", tr.transcode((dataNode->GetFieldAsString("type")).c_str()));
mDatasource->push(mfeature);
...
...
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