"For the vision impaired, SVG offers tremendous potential for
interactive Internet mapping applications as discussed by Gardner and
Bulatov (2001).".
Now, here's an SVG file with fair/medium complexity,
http://www.carto.net/papers/svg/samples/canvas.svg, even as a sighted
person, I find its source
code albeit in xml format hard to "absorb" at the first glance, let
alone a visually impaired individual. The most important element seems
to be,
<g id="schrift" visibility="vis ible"... </g>
If I'm not off, it seems that key information the image conveys is as
follows:
* list of the cities
* respective location and
* spatial relations between/among them
And here are some thoughts:
If the xml for the svg is constructed in a such a fasion that
a) the above most most important elment, namely, the g with
id="schrift" in this case, is placed at the top of the file (508 parser
does not have to scan the whole file ...);
b) each city is listed from left like Bregenz, Innsbruck, Salzburg ...
c) with an attribute of positionH508 with values like "Start", "East",
"West" ...
d) another attribute of postionV508 with values like "Start", "Above",
"Below" ...
Like this:
<g id="schrift" visibility="vis ible" 508="true">
<text x="-2222" y="1204" class="fil2 fnt1" postionH508="St art"
postionV508="St art">Bregenz</text>
<text x="-1419" y="1702" class="fil2 fnt1" postionH508="Ea st"
postionV508="Be low">Innsbruck </text>
<text x="-143" y="1027" class="fil2 fnt1" postionH508="Ea st"
postionV508="Ab ove">Salzburg</text>
...
</g>
A new idea, see the above new attribute of "508" in the id of "schrift"
element. When this attribute is set to true a 508 (visually impaired)
parser would extract this element otherwise ignore. Hence, an author
of an SVG file knows and decides which elements are most important and
he/she wants to convey them to a wider audience (including visually
impaired persons).
<!-- leave x, y coordinates there as is -->
And when that becomes reality SVG would be THE future graphic format
for the widest audience possible.
What do you think?
interactive Internet mapping applications as discussed by Gardner and
Bulatov (2001).".
Now, here's an SVG file with fair/medium complexity,
http://www.carto.net/papers/svg/samples/canvas.svg, even as a sighted
person, I find its source
code albeit in xml format hard to "absorb" at the first glance, let
alone a visually impaired individual. The most important element seems
to be,
<g id="schrift" visibility="vis ible"... </g>
If I'm not off, it seems that key information the image conveys is as
follows:
* list of the cities
* respective location and
* spatial relations between/among them
And here are some thoughts:
If the xml for the svg is constructed in a such a fasion that
a) the above most most important elment, namely, the g with
id="schrift" in this case, is placed at the top of the file (508 parser
does not have to scan the whole file ...);
b) each city is listed from left like Bregenz, Innsbruck, Salzburg ...
c) with an attribute of positionH508 with values like "Start", "East",
"West" ...
d) another attribute of postionV508 with values like "Start", "Above",
"Below" ...
Like this:
<g id="schrift" visibility="vis ible" 508="true">
<text x="-2222" y="1204" class="fil2 fnt1" postionH508="St art"
postionV508="St art">Bregenz</text>
<text x="-1419" y="1702" class="fil2 fnt1" postionH508="Ea st"
postionV508="Be low">Innsbruck </text>
<text x="-143" y="1027" class="fil2 fnt1" postionH508="Ea st"
postionV508="Ab ove">Salzburg</text>
...
</g>
A new idea, see the above new attribute of "508" in the id of "schrift"
element. When this attribute is set to true a 508 (visually impaired)
parser would extract this element otherwise ignore. Hence, an author
of an SVG file knows and decides which elements are most important and
he/she wants to convey them to a wider audience (including visually
impaired persons).
<!-- leave x, y coordinates there as is -->
And when that becomes reality SVG would be THE future graphic format
for the widest audience possible.
What do you think?
Comment