mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-04 00:04:03 -04:00
It doesn't make sense to force a single cost for all input points, so make this parameter dynamic so that the cost can be eg taken from an input layer field Fixes #62004
73 lines
3.0 KiB
XML
73 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xs:schema
|
|
targetNamespace="http://ogr.maptools.org/"
|
|
xmlns:ogr="http://ogr.maptools.org/"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:gml="http://www.opengis.net/gml/3.2"
|
|
xmlns:gmlsf="http://www.opengis.net/gmlsf/2.0"
|
|
elementFormDefault="qualified"
|
|
version="1.0">
|
|
<xs:annotation>
|
|
<xs:appinfo source="http://schemas.opengis.net/gmlsfProfile/2.0/gmlsfLevels.xsd">
|
|
<gmlsf:ComplianceLevel>0</gmlsf:ComplianceLevel>
|
|
</xs:appinfo>
|
|
</xs:annotation>
|
|
<xs:import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>
|
|
<xs:import namespace="http://www.opengis.net/gmlsf/2.0" schemaLocation="http://schemas.opengis.net/gmlsfProfile/2.0/gmlsfLevels.xsd"/>
|
|
<xs:element name="FeatureCollection" type="ogr:FeatureCollectionType" substitutionGroup="gml:AbstractFeature"/>
|
|
<xs:complexType name="FeatureCollectionType">
|
|
<xs:complexContent>
|
|
<xs:extension base="gml:AbstractFeatureType">
|
|
<xs:sequence minOccurs="0" maxOccurs="unbounded">
|
|
<xs:element name="featureMember">
|
|
<xs:complexType>
|
|
<xs:complexContent>
|
|
<xs:extension base="gml:AbstractFeatureMemberType">
|
|
<xs:sequence>
|
|
<xs:element ref="gml:AbstractFeature"/>
|
|
</xs:sequence>
|
|
</xs:extension>
|
|
</xs:complexContent>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:sequence>
|
|
</xs:extension>
|
|
</xs:complexContent>
|
|
</xs:complexType>
|
|
<xs:element name="service_area_dynamic" type="ogr:service_area_dynamic_Type" substitutionGroup="gml:AbstractFeature"/>
|
|
<xs:complexType name="service_area_dynamic_Type">
|
|
<xs:complexContent>
|
|
<xs:extension base="gml:AbstractFeatureType">
|
|
<xs:sequence>
|
|
<xs:element name="geometryProperty" type="gml:MultiCurvePropertyType" nillable="true" minOccurs="0" maxOccurs="1"/> <!-- restricted to MultiLineString --><!-- srsName="urn:ogc:def:crs:EPSG::32733" -->
|
|
<xs:element name="fid" nillable="true" minOccurs="0" maxOccurs="1">
|
|
<xs:simpleType>
|
|
<xs:restriction base="xs:string">
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:element>
|
|
<xs:element name="d" nillable="true" minOccurs="0" maxOccurs="1">
|
|
<xs:simpleType>
|
|
<xs:restriction base="xs:integer">
|
|
<xs:totalDigits value="10"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:element>
|
|
<xs:element name="type" nillable="true" minOccurs="0" maxOccurs="1">
|
|
<xs:simpleType>
|
|
<xs:restriction base="xs:string">
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:element>
|
|
<xs:element name="start" nillable="true" minOccurs="0" maxOccurs="1">
|
|
<xs:simpleType>
|
|
<xs:restriction base="xs:string">
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:element>
|
|
</xs:sequence>
|
|
</xs:extension>
|
|
</xs:complexContent>
|
|
</xs:complexType>
|
|
</xs:schema>
|