Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
wiki:designimplementation:dataaccess [2014/08/18 13:57] marisa [DataSource] |
wiki:designimplementation:dataaccess [2014/08/18 14:14] (current) marisa [DataSource] |
||
---|---|---|---|
Line 55: | Line 55: | ||
For a WFS data source available at ''http://www.dpi.inpe.br/wfs'' the connection string could be: | For a WFS data source available at ''http://www.dpi.inpe.br/wfs'' the connection string could be: | ||
<code cpp> | <code cpp> | ||
- | std::string connInfo = "service=http%3A%2F%2Fwww.dpi.inpe.br%2Fwfs"; | + | std::map<std::string, std::string> connInfo; |
+ | connInfo["URI"] = "http://www.dpi.inpe.br/wfs"; | ||
</code> | </code> | ||