123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?xml version="1.0" encoding="UTF-8"?>
- <as:AppSchemaDataAccess xmlns:as="http://www.geotools.org/app-schema"
- xmlns:ogc="http://www.opengis.net/ogc" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.geotools.org/app-schema AppSchemaDataAccess.xsd">
- <namespaces>
- <Namespace>
- <prefix>tut</prefix>
- <uri>http://example.org/tutorial</uri>
- </Namespace>
- <Namespace>
- <prefix>gml</prefix>
- <uri>http://www.opengis.net/gml</uri>
- </Namespace>
- </namespaces>
- <sourceDataStores>
- <DataStore>
- <id>datastore</id>
- <parameters>
- <Parameter>
- <name>directory</name>
- <value>file:./</value>
- </Parameter>
- </parameters>
- </DataStore>
- </sourceDataStores>
- <targetTypes>
- <FeatureType>
- <schemaUri>RoadSegment.xsd</schemaUri>
- </FeatureType>
- </targetTypes>
- <typeMappings>
- <FeatureTypeMapping>
- <sourceDataStore>datastore</sourceDataStore>
- <sourceType>tut_RoadSegment</sourceType>
- <targetElement>tut:RoadSegment</targetElement>
- <groupBy />
- <attributeMappings>
- <AttributeMapping>
- <targetAttribute>tut:RoadSegment</targetAttribute>
- <idExpression>
- <OCQL>ID</OCQL>
- </idExpression>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>gml:name</targetAttribute>
- <sourceExpression>
- <OCQL>FID</OCQL>
- </sourceExpression>
- <ClientProperty>
- <name>codeSpace</name>
- <value>'urn:x-test:classifierScheme:TestAuthority:SDI:transport:v1'</value>
- </ClientProperty>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>tut:name</targetAttribute>
- <sourceExpression>
- <OCQL>NAME</OCQL>
- </sourceExpression>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>tut:fromToNodes</targetAttribute>
- <idExpression>
- <OCQL>FID</OCQL>
- </idExpression>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>tut:fromToNodes/tut:fromNode</targetAttribute>
- <sourceExpression>
- <OCQL>fromNode</OCQL>
- </sourceExpression>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>tut:fromToNodes/tut:toNode</targetAttribute>
- <sourceExpression>
- <OCQL>toNode</OCQL>
- </sourceExpression>
- </AttributeMapping>
- <AttributeMapping>
- <targetAttribute>tut:the_geom</targetAttribute>
- <sourceExpression>
- <OCQL>the_geom</OCQL>
- </sourceExpression>
- </AttributeMapping>
- </attributeMappings>
- </FeatureTypeMapping>
- </typeMappings>
- </as:AppSchemaDataAccess>
|