<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body text="#000000" bgcolor="#FFFFFF">
Hello,<br>
I have problem using ogr2ogr during import gml file which can have
one or more then one value for an attribute e.g.:<br>
<br>
<font size="-1"><gml:featureMember><br>
<id>101</id><br>
<fun>A</fun><br>
<fun>B</fun><br>
.<br>
.<br>
</gml:featureMember><br>
<gml:featureMember><br>
<id>102</id><br>
<fun>C</fun><br>
.<br>
.<br>
</gml:featureMember><br>
</font><br>
In above situation ogr2ogr didn't import at all attribute "fun".<br>
<br>
May be in this situation it would be better when user can choose one
of variant:<br>
- import first encountered value of attribute "fun" from each record
e.g.: "A", <br>
- import all values separated with comma e.g.: "A, B"<br>
- ideal solution but difficult: create auxiliary table which keeps
all relations one to many e.g.:<br>
101 A <br>
101 B<br>
102 C<br>
<br>
Regards,<br>
Piotr<br>
</body>
</html>